anki/ts/tsconfig.json
Damien Elmes 123474c455 Update TS deps
Due to a change in svelte-check 3.5.2 (likely https://github.com/sveltejs/language-tools/pull/2146),
we can no longer have composite enabled, as svelte-check spits out errors
about files in other project references not being listed in included files.
This should hopefully not make a difference to us, as we weren't taking
advantage of TypeScript's project compilation, as svelte-check doesn't support
it, and we use esbuild for JS conversion.
2023-11-27 13:34:42 +10:00

61 lines
1.5 KiB
JSON

{
"include": [],
"exclude": [],
"references": [
{ "path": "components" },
{ "path": "congrats" },
{ "path": "deck-options" },
{ "path": "editable" },
{ "path": "editor" },
{ "path": "graphs" },
{ "path": "html-filter" },
{ "path": "reviewer" },
{ "path": "lib" },
{ "path": "mathjax" },
{ "path": "domlib" },
{ "path": "sveltelib" },
{ "path": "icons" }
],
"compilerOptions": {
"declaration": true,
"isolatedModules": true,
"composite": false,
"target": "es2020",
"module": "es2020",
"lib": [
"es2017",
"es2018",
"es2019",
"es2020",
"dom",
"dom.iterable"
],
"outDir": "../out",
"rootDir": "..",
"rootDirs": [
"..",
"../out"
],
"baseUrl": ".",
"paths": {
"@tslib/*": ["lib/*", "../out/ts/lib/*"]
},
"types": [],
"verbatimModuleSyntax": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"alwaysStrict": true,
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react",
"noEmitHelpers": true,
"importHelpers": true
}
}