File tree Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Expand file tree Collapse file tree 3 files changed +3
-11
lines changed Original file line number Diff line number Diff line change 19
19
"lint" : " eslint \" .\" && prettier --check \" ./src/**/*.ts\" " ,
20
20
"clean" : " rm -Rf node_modules/ dist/" ,
21
21
"build" : " tsc" ,
22
- "build-with-tests" : " tsc --project tsconfig-with-tests.json && cp 'src/test/echo space.js' dist/test" ,
22
+ "build-with-tests" : " tsc && cp 'src/test/echo space.js' dist/test" ,
23
23
"generate" : " ./generate-client.sh" ,
24
24
"watch" : " tsc --watch" ,
25
25
"test" : " c8 node --test --test-reporter=spec --import tsx src/*_test.ts" ,
Original file line number Diff line number Diff line change 1
1
{
2
2
"extends" : " ./tsconfig.json" ,
3
- "exclude" : [],
4
- "compilerOptions" : {
5
- "paths" : {
6
- "node-fetch/externals" : [" ./node_modules/@types/node-fetch/externals.d.ts" ]
7
- }
8
- }
3
+ "exclude" : []
9
4
}
Original file line number Diff line number Diff line change 16
16
"importHelpers" : true ,
17
17
"skipLibCheck" : true ,
18
18
"esModuleInterop" : true ,
19
- "useDefineForClassFields" : false ,
20
- "paths" : {
21
- "node-fetch/externals" : [" ./node_modules/@types/node-fetch/externals.d.ts" ]
22
- }
19
+ "useDefineForClassFields" : false
23
20
// enable this in the future
24
21
// "declarationMap": true
25
22
},
You can’t perform that action at this time.
0 commit comments