generated from Sikessem/starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
46 lines (46 loc) · 1.31 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
{
"exclude": ["node_modules"],
"compilerOptions": {
"allowJs": true,
"target": "ES2020",
"module": "ESNext",
"lib": ["ES2020", "DOM", "WebWorker", "DOM.Iterable"],
"strict": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"moduleResolution": "Bundler",
"esModuleInterop": true,
"skipLibCheck": true,
"incremental": true,
"isolatedModules": true,
"outDir": "tmp",
"noEmit": true,
"typeRoots": ["./node_modules/@types", "./node_modules"],
"types": ["node", "vitest/globals"],
"baseUrl": ".",
"paths": {
"@sikessem/ui/*": ["./packages/ui/src/*"]
},
"noImplicitAny": true,
"strictNullChecks": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"allowUnreachableCode": false,
"allowUnusedLabels": false,
"declaration": true,
"declarationMap": true,
"noImplicitReturns": true,
"pretty": true,
"useDefineForClassFields": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": false,
"noFallthroughCasesInSwitch": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"importHelpers": true,
"allowImportingTsExtensions": true
},
"files": ["./biome.json"]
}