-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 794 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 794 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"composite": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"inlineSources": false,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["DOM", "DOM.Iterable", "ESNext", "webworker"],
"module": "ESNext",
"moduleResolution": "Node",
"noEmit": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"paths": { "@/*": ["./src/*"] },
"preserveWatchOutput": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNext"
},
"exclude": ["node_modules", ".next"],
"include": ["**/*.ts", "**/*.tsx", "vite.config.mjs"]
}