-
Notifications
You must be signed in to change notification settings - Fork 34
/
tsconfig.json
43 lines (43 loc) · 1.06 KB
/
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
36
37
38
39
40
41
42
43
{
"compilerOptions": {
"outDir": "./public/js/dist",
"baseUrl": ".",
"paths": {
"api/*": ["src/api/*"],
"context/*": ["src/context/*"],
"components/*": ["src/components/*"],
"pages/*": ["src/pages/*"],
"types/*": ["src/types/*"],
"util/*": ["src/util/*"],
"*": ["types/*.d.ts"]
},
"target": "ES2020",
"module": "esnext",
"jsx": "react-jsx",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"noFallthroughCasesInSwitch": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": false,
"sourceMap": true,
"types": ["vitest/globals"]
},
"include": [
"./src",
".eslintrc.cjs",
"babel.config.js",
"merge.playwright.config.ts",
"playwright.config.ts",
"webpack.config.js",
"./tests/**/*.ts",
"vite.config.ts",
"vitest.config.ts"
],
}