forked from Teradata/covalent
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
32 lines (32 loc) · 819 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
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./src",
"declaration": false,
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"lib": [
"es2017",
"dom"
],
"moduleResolution": "node",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"target": "es5",
"typeRoots": [
"./node_modules/@types"
],
"paths": {
"@covalent/core/*": ["./platform/core/*"],
"@covalent/dynamic-forms": ["./platform/dynamic-forms"],
"@covalent/highlight": ["./platform/highlight"],
"@covalent/http": ["./platform/http"],
"@covalent/markdown": ["./platform/markdown"]
},
"noUnusedParameters": false,
"noUnusedLocals": false,
"allowUnreachableCode": false,
"pretty": true,
"importHelpers": true
}
}