Skip to content

Commit

Permalink
chore: enable TypeScript verbatimModuleSyntax flag (#1778)
Browse files Browse the repository at this point in the history
  • Loading branch information
ghiscoding authored Dec 14, 2024
1 parent 5f3324b commit af57ef9
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,16 +3,9 @@
"module": "esnext",
"moduleResolution": "node",
"target": "es2021",
"lib": [
"es2021",
"dom"
],
"types": [
"node"
],
"typeRoots": [
"./node_modules/@types"
],
"lib": ["es2021", "dom"],
"types": ["node"],
"typeRoots": ["./node_modules/@types"],
"pretty": true,
"importHelpers": true,
"allowSyntheticDefaultImports": true,
Expand All @@ -29,6 +22,7 @@
"skipLibCheck": true,
"preserveConstEnums": true,
"stripInternal": true,
"strict": true
"strict": true,
"verbatimModuleSyntax": true
}
}

0 comments on commit af57ef9

Please sign in to comment.