-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
24 lines (24 loc) · 793 Bytes
/
tsconfig.json
File metadata and controls
24 lines (24 loc) · 793 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": {
"allowJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"jsx": "react-jsx",
"lib": ["dom", "dom.iterable", "es2015", "es2017", "es2018", "es2019", "es2020", "es5", "es6", "es7", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": false,
"noImplicitAny": false,
"forceConsistentCasingInFileNames": true,
"outDir": "dist",
"strict": true,
"target": "esnext",
"sourceMap": true,
"sourceRoot": "/",
"inlineSources": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"types": ["vite/client", "vitest/globals", "vite-plugin-svgr/client"],
},
"exclude": ["**/public/**/*", "**/dist/**/*", ".yarn/**/*", "**/node_modules/**/*", "**/coverage/**/*"]
}