Skip to content

Commit

Permalink
fixup! Updated esbuild to version 0.14.47
Browse files Browse the repository at this point in the history
  • Loading branch information
petebacondarwin committed Jun 29, 2022
1 parent 3b54b38 commit ae188e5
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,19 @@
{
"compilerOptions": {
"target": "esnext",
"esModuleInterop": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"noEmit": true,
"lib": ["esnext"],
"incremental": true,
"strict": true,
"skipLibCheck": true,
"types": ["jest"]
},
"exclude": ["node_modules/"]
"compilerOptions": {
"target": "esnext",
"esModuleInterop": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"isolatedModules": true,
"noEmit": true,
"lib": ["esnext"],
"incremental": true,
"strict": true,
// `alwaysStrict: false` is needed because otherwise esbuild will add `"use strict";`
// statements throughout the imported libraries which can break them.
"alwaysStrict": false,
"skipLibCheck": true,
"types": ["jest"]
},
"exclude": ["node_modules/"]
}

0 comments on commit ae188e5

Please sign in to comment.