File tree 2 files changed +5
-4
lines changed
2 files changed +5
-4
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " ./tsconfig.json" ,
3
+ "compilerOptions" : {
4
+ "outDir" : " dist"
5
+ },
3
6
"exclude" : [" **/*.spec.ts" , " test/**/*" , " bin/**/*" ]
4
7
}
Original file line number Diff line number Diff line change 6
6
// https://nodejs.org/api/packages.html#imports
7
7
"#entity/*" : [" ./src/entity/*" ],
8
8
},
9
- "target" : " ES2021" ,
10
- "outDir" : " dist" ,
9
+ "target" : " es2022" ,
11
10
"module" : " commonjs" ,
12
11
"moduleResolution" : " node" ,
13
12
"incremental" : true ,
16
15
"strict" : true ,
17
16
"allowUnreachableCode" : false ,
18
17
"allowUnusedLabels" : false ,
19
- // "exactOptionalPropertyTypes ": true,
18
+ "noEmitOnError " : true ,
20
19
"noFallthroughCasesInSwitch" : true ,
21
20
"noImplicitOverride" : true ,
22
21
"noImplicitReturns" : true ,
23
22
"noPropertyAccessFromIndexSignature" : true ,
24
- // "noUncheckedIndexedAccess": true,
25
23
"noUnusedLocals" : true ,
26
24
"noUnusedParameters" : true ,
27
25
"removeComments" : true ,
You can’t perform that action at this time.
0 commit comments