DefinitelyTyped/node-powershell/tsconfig.json
Rodrigo F. Fernandes b6701c86cf Updated tsconfig.json
Changed strictNullCheck to true
2017-03-03 09:55:29 -03:00

23 lines
459 B
JSON

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