Skip to content

Commit

Permalink
chore(tsconfig): enable verbatimModuleSyntax
Browse files Browse the repository at this point in the history
  • Loading branch information
yifanwww committed Feb 22, 2024
1 parent a948343 commit 9ee8c28
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion tsconfigs/tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
*/
"strict": true,
"stripInternal": true,
"target": "ES2018"
"target": "ES2018",
"verbatimModuleSyntax": true
}
}
3 changes: 2 additions & 1 deletion tsconfigs/tsconfig.cjs.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,8 @@
"compilerOptions": {
"module": "CommonJS",
"outDir": "../lib-commonjs",
"rootDir": "../src"
"rootDir": "../src",
"verbatimModuleSyntax": false
},
"include": ["../src/**/*"],
"exclude": [
Expand Down

0 comments on commit 9ee8c28

Please sign in to comment.