-
-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Expand file tree
/
Copy pathtsconfig.build.json
More file actions
33 lines (33 loc) · 950 Bytes
/
tsconfig.build.json
File metadata and controls
33 lines (33 loc) · 950 Bytes
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
{
"extends": "./node_modules/ng-packagr/src/lib/ts/conf/tsconfig.ngc.json",
"compilerOptions": {
"allowJs": true,
"ignoreDeprecations": "6.0",
"module": "ESNext",
"moduleDetection": "force",
"moduleResolution": "Bundler",
"stripInternal": true,
"baseUrl": ".",
"target": "es2022",
"outDir": "dist",
"declaration": true,
"declarationDir": "types",
"sourceMap": true,
"inlineSourceMap": false,
"inlineSources": true,
"skipLibCheck": true,
"emitDecoratorMetadata": false,
"experimentalDecorators": true,
"importHelpers": true,
"lib": ["dom", "es2020"]
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true,
"compilationMode": "partial"
},
"include": ["src"],
"exclude": ["node_modules", "dist", "**/*.shim.ts", "**/*.spec.ts"]
}