-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.jest.json
36 lines (36 loc) · 984 Bytes
/
tsconfig.jest.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
{
// custom schema (non-vscode environment)
"$schema": "https://json.schemastore.org/tsconfig",
"compilerOptions": {
"target": "ESNext",
"module": "ESNext",
"lib": ["ES2019", "ES2020", "DOM", "ES6", "ESNext"],
"outDir": "./tmp/jest",
"allowJs": true,
"checkJs": false,
"resolveJsonModule": true,
"downlevelIteration": true,
"noImplicitAny": false,
/* Strict Type-Checking Options */
"strict": false,
/* Module Resolution Options */
"allowSyntheticDefaultImports": true,
"moduleResolution": "Bundler",
"esModuleInterop": true,
/* Advanced Options */
"forceConsistentCasingInFileNames": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"typeRoots": ["node_modules/@types"],
"types": ["jest"]
},
"exclude": [
"**/*.runner.*",
"**/*.explicit.*",
"**/*.builder.*",
"**/dist/**",
"**/node_modules/**",
"**/tmp/**"
],
"include": ["./test/**/*", "./src/**/*"]
}