forked from LiveSplit/LiveSplitOne
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.node.json
More file actions
35 lines (35 loc) · 1.15 KB
/
Copy pathtsconfig.node.json
File metadata and controls
35 lines (35 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
{
"compilerOptions": {
"target": "ES2024",
"module": "ESNext",
"moduleResolution": "Bundler",
"strict": true,
"noImplicitAny": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUncheckedSideEffectImports": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"noEmit": true,
// DOM, WebWorker, and Workbox declarations currently conflict when
// TypeScript checks their third-party declaration files together.
"skipLibCheck": true,
"verbatimModuleSyntax": true,
"types": ["node"],
"lib": ["ES2024", "DOM", "WebWorker"]
},
"include": [
"buildCore.ts",
"eslint.config.ts",
"vite.config.ts",
"src/type-definitions/babel-core-shim.d.ts"
]
}