File tree Expand file tree Collapse file tree 4 files changed +22
-62
lines changed Expand file tree Collapse file tree 4 files changed +22
-62
lines changed Original file line number Diff line number Diff line change 17
17
"test:e2e" : " jest --group=e2e"
18
18
},
19
19
"lint-staged" : {
20
- "*.ts" : " npm run lint-fix" ,
21
- "*.js" : " npm run lint-fix"
20
+ "*.{js,ts}" : " npm run lint-fix"
22
21
},
23
22
"repository" : {
24
23
"type" : " git" ,
Original file line number Diff line number Diff line change
1
+ {
2
+ "extends" : " ../tsconfig.json" ,
3
+ "compilerOptions" : {
4
+ "rootDir" : " ../" ,
5
+ "noEmit" : true
6
+ },
7
+ "include" : [
8
+ " ../src/**/*" ,
9
+ " ./**/*" ,
10
+ ]
11
+ }
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
{
2
- "compilerOptions" : {
3
- "experimentalDecorators" : true ,
4
- "noImplicitAny" : true ,
5
- "target" : " ES2019" ,
6
- "module" : " commonjs" ,
7
- "declaration" : true ,
8
- "outDir" : " lib" ,
9
- "strict" : true ,
10
- "inlineSourceMap" : true ,
11
- "moduleResolution" : " node" ,
12
- "resolveJsonModule" : true ,
13
- "pretty" : true ,
14
- "baseUrl" : " src/" ,
15
- "rootDirs" : [ " src/" ],
16
- "esModuleInterop" : true
17
- },
18
- "include" : [ " src/**/*" ],
19
- "exclude" : [ " ./node_modules" , " cdk.out" ],
20
- "watchOptions" : {
21
- "watchFile" : " useFsEvents" ,
22
- "watchDirectory" : " useFsEvents" ,
23
- "fallbackPolling" : " dynamicPriority"
24
- },
25
- "lib" : [ " es2019" ],
26
- "types" : [
27
- " jest" ,
28
- " node"
29
- ]
30
- }
2
+ "extends" : " ../tsconfig.json" ,
3
+ "compilerOptions" : {
4
+ "outDir" : " ./lib" ,
5
+ "rootDir" : " ./" ,
6
+ },
7
+ "include" : [
8
+ " ./src/**/*" ,
9
+ " ./bin/**/*"
10
+ ],
11
+ }
You can’t perform that action at this time.
0 commit comments