forked from digitopvn/diginext
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.jest.json
38 lines (38 loc) · 979 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
37
38
{
"compilerOptions": {
"strict": false,
"outDir": "dist",
"lib": ["ES6"],
"target": "ES6",
"module": "commonjs",
"moduleResolution": "node",
"noImplicitReturns": false,
"strictPropertyInitialization": false,
"forceConsistentCasingInFileNames": true,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"allowJs": true,
"composite": false,
"declaration": true,
"declarationMap": true,
"esModuleInterop": true,
"inlineSources": false,
"isolatedModules": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"preserveWatchOutput": true,
"skipLibCheck": true,
"resolveJsonModule": true,
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"],
"libs/*": ["./libs/*"]
}
},
"include": ["./src/*", "./src/**/*", "node_modules/execa/index.d.ts"],
"exclude": ["dist", "build", "node_modules", "storage", "./storage"],
"ts-node": {
"require": ["tsconfig-paths/register"]
}
}