Files
Charles Gagnon cd8a747522 Enable strictNullChecks for extensions by default (#19197)
* Strict null on extensions

* fix test

* Fail on no stdin
2022-04-25 09:19:42 -07:00

19 lines
315 B
JSON

{
"extends": "../tsconfig.base.json",
"compilerOptions": {
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"outDir": "out",
"lib": [
"es2015"
],
"strict": false,
"noUnusedParameters": false,
"noImplicitAny": false,
"strictNullChecks": false
},
"include": [
"src/**/*"
]
}