-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (32 loc) · 843 Bytes
/
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
{
// https://www.typescriptlang.org/docs/handbook/tsconfig-json.html
// https://www.typescriptlang.org/docs/handbook/compiler-options.html
"extends": "./tsconfig.checks.json",
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"moduleResolution": "node",
"resolveJsonModule": true,
"esModuleInterop": true,
"importHelpers": true,
"noEmitOnError": true,
"declaration": true,
"sourceMap": true,
"lib": [
"es2015"
],
"baseUrl": ".",
"paths": {
"src/*": [
"./src/*"
]
},
"outDir": "./lib",
"plugins": [
// transform paths in output .js files
{"transform": "typescript-transform-paths"},
// transform paths in output .d.ts files
{"transform": "typescript-transform-paths", "afterDeclarations": true},
]
}
}