File tree Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Expand file tree Collapse file tree 1 file changed +11
-6
lines changed Original file line number Diff line number Diff line change
1
+ /* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
2
+ /* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
1
3
{
2
4
"compileOnSave" : false ,
3
5
"compilerOptions" : {
4
- "baseUrl" : " ./" ,
5
6
"outDir" : " ./dist/out-tsc" ,
6
- "forceConsistentCasingInFileNames" : true ,
7
7
"strict" : true ,
8
8
"noImplicitOverride" : true ,
9
9
"noPropertyAccessFromIndexSignature" : true ,
10
10
"noImplicitReturns" : true ,
11
11
"noFallthroughCasesInSwitch" : true ,
12
+ "skipLibCheck" : true ,
13
+ "isolatedModules" : true ,
14
+ "esModuleInterop" : true ,
12
15
"sourceMap" : true ,
13
16
"declaration" : false ,
14
- "downlevelIteration" : true ,
15
17
"experimentalDecorators" : true ,
16
- "moduleResolution" : " node " ,
18
+ "moduleResolution" : " bundler " ,
17
19
"importHelpers" : true ,
18
20
"target" : " ES2022" ,
19
- "module" : " es2020" ,
20
- "lib" : [" es2020" , " dom" ]
21
+ "module" : " ES2022" ,
22
+ "lib" : [
23
+ " ES2022" ,
24
+ " dom"
25
+ ]
21
26
},
22
27
"angularCompilerOptions" : {
23
28
"enableI18nLegacyMessageIdFormat" : false ,
You can’t perform that action at this time.
0 commit comments