anki/ts/tsconfig.json
Damien Elmes c15f71071e fix broken js building
- deps need to be defined before used
- incremental builds were not working properly
2019-12-18 17:56:58 +10:00

22 lines
547 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"rootDir": "src",
"outDir": "../web",
"strict": true,
/* Enable all strict type-checking options. */
"noImplicitAny": false,
/* Raise error on expressions and declarations with an implied 'any' type. */
"strictNullChecks": false,
/* Enable strict null checks. */
"noImplicitThis": false,
/* Raise error on 'this' expressions with an implied 'any' type. */
"esModuleInterop": true
}
}