-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathtsconfig.json
53 lines (53 loc) · 1.36 KB
/
tsconfig.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
41
42
43
44
45
46
47
48
49
50
51
52
53
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"baseUrl": ".",
"paths": {
"~/*": ["./src/*"],
"#/*": ["./addons/*"]
},
"target": "ES2023",
"module": "NodeNext",
"moduleDetection": "force",
"moduleResolution": "nodenext",
"lib": ["DOM", "DOM.Iterable", "ES2023"],
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"isolatedModules": true,
"noPropertyAccessFromIndexSignature": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"skipLibCheck": true,
"jsx": "preserve",
"allowJs": true,
"strict": true,
"noEmit": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"strictNullChecks": true,
"noImplicitAny": true
},
"include": [
"build.optim.ts",
"build.config.ts",
"vitest.config.ts",
"src/**/*.js",
"src/**/*.ts",
"src/**/*.tsx",
"addons/**/*.ts",
"reset.d.ts",
"build.publish.ts",
"build.pub.ts",
"drizzle.config.ts",
"eslint.config.js",
"publish.ts"
],
"exclude": ["node_modules", "dist-jsr", "dist-npm"]
}