DefinitelyTyped/types/aws-kcl/tsconfig.json
Vlad Shlosberg f62fa98505
Adding type definitions for aws-kcl library (#43432)
* Adding type definitions for aws-kcl library

* exporting as module function (https://www.typescriptlang.org/docs/handbook/declaration-files/templates/module-function-d-ts.html)

* Changing import type per PR comments
2020-04-07 09:45:35 -07:00

25 lines
521 B
JSON

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