-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 795 Bytes
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 795 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
{
"compileOnSave": false,
"compilerOptions": {
"target": "es6",
"jsx": "react-jsx",
"lib": ["es2017", "ESNext", "dom", "dom.iterable"],
"allowJs": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"noImplicitReturns": false,
"strictPropertyInitialization": false,
"types": ["vitest/globals", "node", "@testing-library/jest-dom"]
},
"exclude": ["node_modules/**/*", "**/node_modules/**/*", "dist/**/*", "**/dist/**/*", "*.js"]
}