mirror of
https://github.com/LukeHagar/balatrix.git
synced 2025-12-06 04:19:20 +00:00
19 lines
464 B
JSON
19 lines
464 B
JSON
{
|
|
"extends": "@electron-toolkit/tsconfig/tsconfig.json",
|
|
"include": [
|
|
"src/renderer/src/env.d.ts",
|
|
"src/renderer/src/**/*",
|
|
"src/renderer/src/**/*.svelte",
|
|
"src/preload/*.d.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"verbatimModuleSyntax": true,
|
|
"useDefineForClassFields": true,
|
|
"strict": false,
|
|
"allowJs": true,
|
|
"checkJs": true,
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"]
|
|
},
|
|
"references": [{ "path": "./tsconfig.node.json" }]
|
|
}
|