8e646ea584
* Initial attempt at CI to annotate new TSC errors * Make tsconfig file valid * enable debug * Specify commit * Fix commit specification * Switch back to main * Tweak permissions * Add strict mode failure * Attempt number two * Fix ts-extra-args * Add static analysis for tsc --strict
18 lines
340 B
JSON
18 lines
340 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2016",
|
|
"experimentalDecorators": true,
|
|
"esModuleInterop": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": false,
|
|
"noUnusedLocals": true,
|
|
"noEmit": true,
|
|
"declaration": true
|
|
},
|
|
"include": [
|
|
"./src/**/*.ts",
|
|
"./spec/**/*.ts"
|
|
]
|
|
}
|