-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.test.json
41 lines (41 loc) · 1.07 KB
/
tsconfig.test.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
{
"$schema": "https://json.schemastore.org/tsconfig",
"extends": ["./tsconfig.json"],
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"jsx": "react-jsx",
"jsxImportSource": "react",
"module": "ESNext",
"moduleDetection": "force",
"noEmit": true,
"strictNullChecks": true,
"target": "ESNext",
"types": ["vitest/globals", "@testing-library/react", "happy-dom", "react"]
},
"include": [
"**/*.test.*",
"**/*.stories.*",
"**/vitest.config.ts",
"vite.config.ts",
"vitest.config.ts",
"vitest.setup.ts",
"vitest.workspace.ts",
"**/tailwind.config.*",
"tailwind.config.*",
"**/postcss.config.*",
"postcss.config.*"
],
"exclude": [
"**/.next",
"**/.turbo",
"**/build",
"**/coverage",
"**/dist",
"**/node_modules",
"**/public",
"**/storybook-static",
"**/src/**/*.d.ts",
"node_modules"
]
}