-
-
Notifications
You must be signed in to change notification settings - Fork 803
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 650 Bytes
/
Copy pathtsconfig.json
File metadata and controls
24 lines (24 loc) · 650 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
{
"compilerOptions": {
"rootDir": "./src",
"target": "es2020",
"lib": ["dom", "dom.iterable", "es2020"],
"jsx": "react-jsx",
"module": "preserve",
"moduleResolution": "bundler",
"strict": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"declaration": true,
"isolatedDeclarations": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"noEmit": true,
"skipLibCheck": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"types": ["node", "vitest/globals"]
},
"include": ["src"],
"exclude": ["src/**/*.spec.ts", "src/**/*.spec.tsx"]
}