-
-
Notifications
You must be signed in to change notification settings - Fork 24
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (25 loc) · 589 Bytes
/
tsconfig.json
File metadata and controls
28 lines (25 loc) · 589 Bytes
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
{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"lib": ["DOM", "ESNext"],
"baseUrl": ".",
"moduleResolution": "Bundler",
"paths": {
"@/*": ["src/*"]
},
"newLine": "LF",
"resolveJsonModule": true,
"types": ["vite/client"],
"allowJs": false,
"strict": true,
"strictNullChecks": true,
"noEmit": true,
"sourceMap": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"skipLibCheck": true
},
"include": ["src", "scripts", "vite.config.*"]
}