-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
30 lines (30 loc) · 870 Bytes
/
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
{
"compilerOptions": {
"target": "ESNext",
"lib": ["dom", "esnext", "webworker"],
"types": ["vite/client", "vitest"],
"typeRoots": ["node_modules/@types", "node_modules"],
"baseUrl": "./",
"allowJs": false,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"isolatedModules": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": true,
"strictPropertyInitialization": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"jsx": "react-jsx",
"moduleResolution": "bundler",
"noEmit": true,
"strict": true,
"module": "esnext",
"paths": {
"app/*": ["app/*"]
}
},
"exclude": ["node_modules", "dist", "coverage", "public"],
"include": ["app", "vitest-setup.ts", "vite.config.ts"]
}