-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
35 lines (35 loc) · 878 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
34
35
{
"compilerOptions": {
"baseUrl": ".",
"noEmit": true,
"module": "esnext",
"target": "esnext",
"jsx": "react-jsx",
"moduleResolution": "Node",
"skipLibCheck": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"noFallthroughCasesInSwitch": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"lib": ["dom", "dom.iterable", "esnext"],
"types": ["vite/client", "node"],
"typeRoots": ["./src/global.d.ts", "node_modules/vite", "node_modules/@types"],
"paths": {
"src/*": ["./src/*"],
"assets/*": ["./src/assets/*"],
"test-utils/*": ["./test-utils/*"]
}
},
"include": [
"src",
"test-utils",
"utils",
"vite.config.ts",
"node_modules/@types",
"eslint.config.js",
"scripts",
"manifest.js"
],
"exclude": ["dist/*"]
}