-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
56 lines (51 loc) · 1.14 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
54
55
56
{
"compilerOptions": {
/* Base */
"esModuleInterop": true,
"skipLibCheck": true,
"target": "ESNext",
"allowJs": true,
"resolveJsonModule": true,
"moduleDetection": "force",
"isolatedModules": true,
/* Strictness */
"strict": true,
"verbatimModuleSyntax": true,
"forceConsistentCasingInFileNames": true,
"useDefineForClassFields": true,
"strictNullChecks": true,
"strictPropertyInitialization": false,
/* Linting */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
/* Bundler/Compiler */
"moduleResolution": "Bundler",
"module": "ESNext",
"noEmit": true,
/* Runtime/Framework */
"lib": ["ESNext", "DOM", "DOM.Iterable"],
"jsx": "react-jsx",
"allowImportingTsExtensions": true,
/* Misc */
"types": [
"vite/client",
"vite-plugin-svgr/client",
"@total-typescript/ts-reset"
]
},
"include": [
"src",
"e2e",
"scripts",
"playwright.config.ts",
"postcss.config.ts",
"tailwind.config.ts",
"vite.config.ts",
"vitest.config.ts"
]
}