anki/ts/tsconfig.json
Damien Elmes f3bfed82ef compile typescript in one go
much faster, especially with --incremental
2019-12-18 14:33:57 +10:00

24 lines
611 B
JSON

{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": [
"es6",
"dom"
],
"rootDir": "src",
"outDir": "../web",
"incremental": true,
"tsBuildInfoFile": "./.buildinfo",
"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
}
}