DefinitelyTyped/types/jwk-to-pem/tsconfig.json
Erik Silkensen 27f6e1e2e7 Adding a new package: jwk-to-pem (#38511)
* Add jwk-to-pem

* Updated to follow module-function.d.ts template
2019-09-24 11:43:42 -07:00

24 lines
491 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictFunctionTypes": true,
"strictNullChecks": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"jwk-to-pem-tests.ts"
]
}