-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.app.json
43 lines (33 loc) · 1.15 KB
/
tsconfig.app.json
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
36
37
38
39
40
{
"extends": "@tsconfig/svelte/tsconfig.json",
"include": ["src/**/*.svelte", "src/**/*.ts"],
"compilerOptions": {
// Type Checking
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"strict": true,
// Modules
"allowImportingTsExtensions": true,
"module": "ESNext",
"moduleResolution": "bundler",
"noUncheckedSideEffectImports": true,
"paths": { "/*": ["./*", "./public/*"] },
"types": ["@webgpu/types", "./lib/spine-ts/build/spine-webgl.d.ts", "./lib/upng-js/UPNG.d.ts", "./lib/eruda/eruda.d.ts"],
// Emit
"noEmit": true,
"preserveConstEnums": true,
// Interop Constraints
"isolatedModules": true,
"verbatimModuleSyntax": true,
// Language and Environment
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"moduleDetection": "force",
"target": "ES2022",
"useDefineForClassFields": true,
// Projects
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo",
// Completeness
"skipLibCheck": true
}
}