-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.bundle.json
executable file
·47 lines (47 loc) · 1.13 KB
/
tsconfig.bundle.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
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "es6",
"lib": [
"ESNext",
"es5",
"es6",
"dom"
],
"declaration": true,
"sourceMap": true,
"rootDir": "./src",
"outDir": "./dist",
"noImplicitAny": true,
"importHelpers": true,
"strictPropertyInitialization": false,
"alwaysStrict": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"noImplicitOverride": false,
"useDefineForClassFields": false,
"composite": true,
"baseUrl": ".",
"types": [
"reflect-metadata",
"node"
]
},
"include": [
"src/**/*.ts",
"tests/**/*.ts"
],
"exclude": [
"node_modules",
"types",
"**/*.spec.ts",
"**/*.test.js",
"**/*.test.ts",
"**/__fixtures__/**/*.*",
"**/__mocks__/**/*.*"
]
}