File tree Expand file tree Collapse file tree 1 file changed +18
-17
lines changed Expand file tree Collapse file tree 1 file changed +18
-17
lines changed Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " ../../tsconfig.base.json" ,
3
3
"compilerOptions" : {
4
- "module " : " commonjs " ,
5
- "forceConsistentCasingInFileNames " : true ,
6
- "strict " : true ,
7
- "noImplicitOverride " : true ,
8
- "noPropertyAccessFromIndexSignature " : true ,
9
- "noImplicitReturns " : true ,
10
- "noFallthroughCasesInSwitch " : true ,
4
+ "baseUrl " : " . " ,
5
+ "rootDir " : " ./ " ,
6
+ "outDir " : " dist " ,
7
+ "sourceMap " : false ,
8
+ "module " : " es2022 " ,
9
+ "target " : " es2022 " ,
10
+ "skipLibCheck " : true ,
11
11
"moduleResolution" : " node" ,
12
+ "allowJs" : false ,
13
+ "strict" : true ,
14
+ "types" : [" jest" , " node" ],
15
+ "experimentalDecorators" : true ,
12
16
"resolveJsonModule" : true ,
17
+ "allowSyntheticDefaultImports" : true ,
13
18
"esModuleInterop" : true ,
14
- "skipLibCheck" : true ,
15
- "skipDefaultLibCheck" : true ,
19
+ "removeComments" : true ,
16
20
"declaration" : true ,
17
- "noImplicitAny" : false
21
+ "paths" : {
22
+ "@/*" : [" ./*" ],
23
+ "@src/*" : [" ./src/*" ]
24
+ }
18
25
},
19
26
"include" : [" src" , " ../../global.d.ts" , " __tests__/**/*" ],
20
- "exclude" : [
21
- " jest.config.ts" ,
22
- " src/**/*.spec.ts" ,
23
- " src/**/*.test.ts" ,
24
- " node_modules/**/*" ,
25
- " ../node_modules"
26
- ],
27
+ "exclude" : [" node_modules/**/*" , " ../node_modules" ],
27
28
"references" : [
28
29
{
29
30
"path" : " ./tsconfig.lib.json"
You can’t perform that action at this time.
0 commit comments