-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
29 lines (29 loc) · 913 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
{
"include": ["./src", "./types"],
"exclude": ["dist", "**/*.test.ts", "node_modules", "test/**", ".history/**"],
"compilerOptions": {
"rootDir": "./src",
"outDir": "dist",
"declaration": true,
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"useDefineForClassFields": true,
"allowJs": true,
"lib": ["ESNext", "DOM"],
"strict": true,
"jsx": "react",
"skipLibCheck": true,
"sourceMap": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"noEmit": false,
"noUnusedLocals": true,
"strictNullChecks": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"forceConsistentCasingInFileNames": true,
"types": ["vite/client", "node"],
"typeRoots": ["node_modules/@types", "./types"]
}
}