DefinitelyTyped/types/tempfile/tsconfig.json
Dimitri Benin e1513dee76 [tempfile] add linting & enable strict null checks (#18852)
* [tempfile] add linting & enable strict null checks

* [tempfile] reintroduce namespace to support import * syntax to avoid a breaking change for users
2017-08-11 10:16:07 -07:00

23 lines
452 B
JSON

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