-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
46 lines (46 loc) · 1.17 KB
/
tsconfig.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
{
"compileOnSave": false,
"compilerOptions": {
"allowJs": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"strictNullChecks": true,
"downlevelIteration": true,
"baseUrl": "./",
"importHelpers": true,
"module": "CommonJS",
"outDir": "./dist",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"resolveJsonModule": true,
"strict": true,
"target": "es2015",
"typeRoots": ["node_modules/@types", "node_modules/@types/", "types"],
"lib": ["es2018", "dom"],
"types": ["node"],
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"plugins": [
{
"transform": "ts-auto-mock/transformer",
"cacheBetweenTests": false
}
]
},
"include": [
"./scripts/**/*.js",
"./writer-opts.js",
"./parser-opts.js",
"./conventional-recommended-bump.js",
"./conventional-changelog.js",
"./index.js"
],
"exclude": ["./src/**.*.spec.ts"]
}