anki/qt/ts/tsconfig.json
Damien Elmes 5876866565 tweaking the folder names again
hopefully that's the last of it
2020-01-03 07:48:38 +10:00

22 lines
556 B
JSON

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