-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
33 lines (33 loc) · 904 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
31
32
33
{
"$schema": "https://json.schemastore.org/tsconfig",
"display": "Default",
"compilerOptions": {
"composite": false,
"declaration": true,
"declarationMap": true,
"inlineSources": false,
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"module": "esnext",
"types": ["vitest/globals"],
"baseUrl": ".",
"forceConsistentCasingInFileNames": true,
"target": "es2021",
"lib": ["DOM", "DOM.Iterable", "ES2021"],
"allowJs": true,
"strict": true,
"esModuleInterop": true,
"isolatedModules": true,
"jsx": "react-jsx",
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmit": true,
"paths": {
"react": [ "./node_modules/@types/react" ]
}
},
"exclude": ["node_modules"],
"include": ["src", "src/**/*", "testing/**/*", "src/custom.d.ts"]
}