-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
46 lines (46 loc) · 1.11 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
44
45
46
{
"$shema": "https://json.schemastore.org/tsconfig.json",
"compilerOptions": {
"types": ["vitest/globals", "@testing-library/jest-dom"],
"allowJs": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@/*": ["./*"]
},
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "react-jsx",
"lib": ["dom", "dom.iterable", "esnext"],
"module": "ESNext",
"moduleResolution": "node",
"noEmit": true,
"noFallthroughCasesInSwitch": true,
"useUnknownInCatchVariables": false,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "ESNext"
},
"include": [
"e2e",
"src",
"validator",
"server",
"@types",
"mocks",
"lib",
"prisma",
".storybook",
"eslint.config.mjs",
"prettier.config.cjs",
"ecosystem.config.js",
"setupTests.ts",
"postcss.config.cjs",
"vite.config.ts",
"vitest.config.ts",
"playwright.config.ts"
],
"exclude": ["public/mockServiceWorker.js", "server_build", "storybook-static"]
}