-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.test.json
51 lines (51 loc) · 1.06 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
42
43
44
45
46
47
48
49
50
51
{
"extends": "./tsconfig.json",
"compilerOptions": {
"target": "es2020",
"module": "ESNext",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"skipLibCheck": true,
"jsx": "react",
"noEmit": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"@glitch-gremlin/sdk": ["./sdk/src"],
"@glitch-gremlin/sdk/*": ["./sdk/src/*"],
"@test/*": ["./tests/*"],
"@mocks/*": ["./tests/mocks/*"],
"@utils/*": ["./tests/utils/*"]
},
"types": [
"jest",
"node",
"@types/jest"
],
"typeRoots": [
"./node_modules/@types",
"./src/types"
],
"resolveJsonModule": true,
"allowJs": true,
"checkJs": false
},
"include": [
"src/**/*",
"tests/**/*",
"__tests__/**/*",
"jest.setup.ts",
"src/types/**/*",
"sdk/**/*",
"worker/**/*"
],
"exclude": [
"node_modules",
"dist",
"coverage"
]
}