DefinitelyTyped/types/tern/tsconfig.json
Nikolaj Kappler 7e12876f17 fix strictNullChecks
workstream:
2018-10-29 13:17:00 +01:00

25 lines
551 B
JSON

{
"compilerOptions": {
"module": "commonjs",
"lib": [
"es6"
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"baseUrl": "../",
"typeRoots": [
"../"
],
"types": [],
"noEmit": true,
"forceConsistentCasingInFileNames": true
},
"files": [
"index.d.ts",
"lib/tern/index.d.ts",
"lib/infer/index.d.ts",
"test/tern.test.ts"
]
}