-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
45 lines (45 loc) · 1.21 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
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"moduleResolution": "Bundler",
"noEmit": true,
"useDefineForClassFields": true,
"resolveJsonModule": true,
"resolvePackageJsonExports": true,
"resolvePackageJsonImports": true,
"allowImportingTsExtensions": true,
"noUncheckedIndexedAccess": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"alwaysStrict": true,
"strictNullChecks": true,
"verbatimModuleSyntax": true,
"strict": true,
"allowJs": true,
"checkJs": true,
"types": ["node", "bun","typed-query-selector/strict"],
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"isolatedModules": true,
"paths": {
"#/*": ["./src/*"]
},
// TODO: set to true
"noUnusedLocals": false,
"noUnusedParameters": false,
},
"include": ["src", "scripts"],
"files": [
"biome.json",
"reset.d.ts",
"vite.config.ts",
"environment.d.ts",
"tailwind.config.ts",
"postcss.config.cjs"
],
"references": [{ "path": "./tsconfig.node.json" }]
}