-
Notifications
You must be signed in to change notification settings - Fork 11
/
tsconfig.json
43 lines (43 loc) · 1 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
{
"include": [
"src/**/*"
],
"compilerOptions": {
"target": "ESNext",
"lib": [
"es2018",
"esnext.asynciterable"
],
"declaration": true,
"strict": true,
"alwaysStrict": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"outDir": "dist",
"skipLibCheck": true,
"noEmitOnError": true,
"forceConsistentCasingInFileNames": true,
"importHelpers": true,
"sourceMap": true,
"inlineSourceMap": false,
"checkJs": true,
"allowJs": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noErrorTruncation": true,
"moduleResolution": "Node",
"module": "ESNext",
"resolveJsonModule": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"paths": {
"semantic-release": [
"./node_modules/@types/semantic-release",
"./node_modules/semantic-release"
]
}
}
}