-
Notifications
You must be signed in to change notification settings - Fork 177
/
tsconfig.json
executable file
·36 lines (36 loc) · 948 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
33
34
35
36
{
"compilerOptions": {
"target": "es5",
"module": "es2015",
"moduleResolution": "node",
"sourceMap": true,
"inlineSources": true,
"declaration": true,
"experimentalDecorators": true,
"removeComments": true,
"suppressImplicitAnyIndexErrors": true,
"skipLibCheck": true,
"stripInternal": true,
"lib": [ "es2015", "dom", "es7" ],
"emitDecoratorMetadata": true
},
"atom": {
"rewriteTsconfig": false
},
"typedocOptions": {
"name": "Angular JSON Schema Form Library",
"mode": "file",
"out": "docs/api/",
"theme": "default",
"ignoreCompilerErrors": "true",
"experimentalDecorators": "true",
"emitDecoratorMetadata": "true",
"target": "es5",
"moduleResolution": "node",
"preserveConstEnums": "true",
"stripInternal": "true",
"suppressExcessPropertyErrors": "true",
"suppressImplicitAnyIndexErrors": "true",
"module": "commonjs"
}
}