-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathtsconfig.tests.json
More file actions
43 lines (43 loc) · 1.25 KB
/
Copy pathtsconfig.tests.json
File metadata and controls
43 lines (43 loc) · 1.25 KB
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
{
"extends": "./tsconfig.json",
"compilerOptions": {
"types": [
"jest",
"@testing-library/jest-dom",
"vitest/globals",
"./tests/setup/test-framework-globals"
],
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@external/dynamic-hero": [
"./src/components/dynamic-hero/src/index.ts"
],
"@external/dynamic-hero/*": [
"./src/components/dynamic-hero/src/*"
]
}
},
"include": [
"src",
"tests",
"**/__tests__/**/*.ts",
"**/__tests__/**/*.tsx",
"**/__tests__/**/*.mts",
"**/__tests__/**/*.cts",
"**/*.test.ts",
"**/*.test.tsx",
"**/*.spec.ts",
"**/*.spec.tsx",
"src/types/jest-dom.d.ts",
"jest.config.js",
"jest.setup.js",
"jest.env.js",
"vitest.config.ts",
"vitest.setup.ts",
"tests/setup/test-framework-globals.d.ts"
],
"exclude": []
}