-
-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Expand file tree
/
Copy pathtsconfig.ngc.json
More file actions
46 lines (45 loc) · 1.46 KB
/
tsconfig.ngc.json
File metadata and controls
46 lines (45 loc) · 1.46 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
/* To learn more about this file see: https://angular.io/config/tsconfig. */
// This tsconfig is used when building @sentry/angular with the Angular
// compiler and `ng-packagr`. It configures a production build conforming
// to the Angular Package Format (APF).
//
// Does NOT extend the shared base tsconfig because ng-packagr ships its own
// older TypeScript that doesn't support "moduleResolution": "bundler".
{
"include": ["**/*.ts", "src/**/*"],
"exclude": ["patch-vitest.ts", "setup-test.ts"],
"compilerOptions": {
"declaration": false,
"declarationMap": false,
"experimentalDecorators": true,
"importHelpers": true,
"inlineSources": true,
"isolatedModules": true,
"lib": ["DOM", "es2020"],
"moduleResolution": "node",
"noErrorTruncation": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noUncheckedIndexedAccess": true,
"preserveWatchOutput": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"strictBindCallApply": false,
"target": "es2020",
"types": ["node"],
"baseUrl": "./"
},
"angularCompilerOptions": {
"skipTemplateCodegen": true,
"strictMetadataEmit": true,
"enableResourceInlining": true,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true,
"enableI18nLegacyMessageIdFormat": false,
"compilationMode": "partial"
}
}