-
Notifications
You must be signed in to change notification settings - Fork 133
/
tsconfig.base.json
67 lines (67 loc) · 3.28 KB
/
tsconfig.base.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"compileOnSave": false,
"angularCompilerOptions": {
"strictTemplates": true,
"fullTemplateTypeCheck": true
},
"compilerOptions": {
"baseUrl": ".",
"outDir": "./dist/out-tsc",
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"module": "esnext",
"strictNullChecks": true,
"noImplicitAny": false,
"alwaysStrict": true,
"strictBindCallApply": true,
"strictFunctionTypes": true,
"strictPropertyInitialization": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"downlevelIteration": true,
"importHelpers": true,
"target": "es2015",
"typeRoots": ["node_modules/@types"],
"lib": ["es2018", "dom"],
"esModuleInterop": true,
"jsx": "react",
"jsxFactory": "JSX.createElement",
"jsxFragmentFactory": "JSX.Fragment",
"paths": {
"@fundamental-ngx/btp": ["libs/btp/index.ts"],
"@fundamental-ngx/btp/*": ["libs/btp/*/index.ts", "libs/btp/*/src/index.ts"],
"@fundamental-ngx/cdk": ["libs/cdk/index.ts"],
"@fundamental-ngx/cdk/*": ["libs/cdk/*/index.ts"],
"@fundamental-ngx/core": ["libs/core/index.ts"],
"@fundamental-ngx/core/*": ["libs/core/*/index.ts"],
"@fundamental-ngx/cx": ["libs/cx/index.ts"],
"@fundamental-ngx/cx/*": ["libs/cx/*/index.ts"],
"@fundamental-ngx/datetime-adapter": ["libs/datetime-adapter/src/index.ts"],
"@fundamental-ngx/docs/btp": ["libs/docs/btp/index.ts"],
"@fundamental-ngx/docs/btp/*": ["libs/docs/btp/*/index.ts", "libs/docs/btp/*/src/index.ts"],
"@fundamental-ngx/docs/cdk": ["libs/docs/cdk/index.ts"],
"@fundamental-ngx/docs/cdk/*": ["libs/docs/cdk/*/index.ts", "libs/docs/cdk/*/src/index.ts"],
"@fundamental-ngx/docs/core": ["libs/docs/core/index.ts"],
"@fundamental-ngx/docs/core/*": ["libs/docs/core/*/index.ts", "libs/docs/core/*/src/index.ts"],
"@fundamental-ngx/docs/cx": ["libs/docs/cx/index.ts"],
"@fundamental-ngx/docs/cx/*": ["libs/docs/cx/*/index.ts", "libs/docs/cx/*/src/index.ts"],
"@fundamental-ngx/docs/i18n": ["libs/docs/i18n/index.ts"],
"@fundamental-ngx/docs/platform": ["libs/docs/platform/index.ts"],
"@fundamental-ngx/docs/platform/*": ["libs/docs/platform/*/index.ts", "libs/docs/platform/*/src/index.ts"],
"@fundamental-ngx/docs/schema": ["libs/docs/schema/src/index.ts"],
"@fundamental-ngx/docs/shared": ["libs/docs/shared/src/index.ts"],
"@fundamental-ngx/docs/shared-pages": ["libs/docs/shared-pages/index.ts"],
"@fundamental-ngx/i18n": ["libs/i18n/src/index.ts"],
"@fundamental-ngx/moment-adapter": ["libs/moment-adapter/src/index.ts"],
"@fundamental-ngx/nx-plugin": ["libs/nx-plugin/src/index.ts"],
"@fundamental-ngx/platform": ["libs/platform/index.ts"],
"@fundamental-ngx/platform/*": ["libs/platform/*/index.ts"]
},
"skipLibCheck": true
},
"exclude": ["node_modules", "tmp"]
}