anki/qt/aqt/data/web/js/tsconfig.json
Damien Elmes 89279f7f5e use ts_project for aqt/data/web/js
We're now ts_project only, and are less likely to run into issues
with future rules_nodejs updates.
2021-10-18 19:39:45 +10:00

18 lines
481 B
JSON

{
"extends": "../../../../../ts/tsconfig.json",
"include": ["*.ts"],
"references": [],
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"lib": ["es2019", "dom", "dom.iterable"],
"types": ["jquery", "jqueryui"],
"strict": true,
"noImplicitAny": false,
"strictNullChecks": false,
"strictPropertyInitialization": false,
"noImplicitThis": false,
"esModuleInterop": true
}
}