forked from dschnelldavis/angular2-json-schema-form
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathtsconfig.json
More file actions
executable file
·70 lines (70 loc) · 1.73 KB
/
Copy pathtsconfig.json
File metadata and controls
executable file
·70 lines (70 loc) · 1.73 KB
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": "./",
"module": "esnext",
"outDir": "./dist/out-tsc",
"sourceMap": true,
"declaration": false,
"inlineSources": true,
"removeComments": true,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"resolveJsonModule": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"typeRoots": [
"node_modules/@types"
],
"lib": [
"es2017",
"dom",
"es7"
],
"paths": {
"@ngsf/bootstrap3-framework": [
"dist/@ngsf/bootstrap3-framework"
],
"@ngsf/bootstrap4-framework": [
"dist/@ngsf/bootstrap4-framework"
],
"@ngsf/common": [
"dist/@ngsf/common"
],
"@ngsf/json-schema-form": [
"dist/@ngsf/json-schema-form"
],
"@ngsf/material-design-framework": [
"dist/@ngsf/material-design-framework"
],
"@ngsf/no-framework": [
"dist/@ngsf/no-framework"
],
"@ngsf/widget-library": [
"dist/@ngsf/widget-library"
]
}
},
"angularCompilerOptions": {
"disableTypeScriptVersionCheck": true
},
"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",
"allowSyntheticDefaultImports": true,
"module": "commonjs"
}
}