Skip to content

Commit

Permalink
build(ts): use modern options
Browse files Browse the repository at this point in the history
  • Loading branch information
markokajzer committed Sep 9, 2024
1 parent 89d2e04 commit edc191f
Showing 1 changed file with 9 additions and 10 deletions.
19 changes: 9 additions & 10 deletions tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,22 +3,21 @@
"module": "commonjs",
"esModuleInterop": true,
"resolveJsonModule": true,
"target": "es6",
"strict": true,
"target": "ES2022",
"outDir": "dist",
"lib": [
"es2017"
],
"typeRoots": [
"node_modules/@types",
"src/types"
],
"incremental": true,

"baseUrl": ".",
"paths": {
"~/*": ["./src/*"]
},
"incremental": true

"typeRoots": [
"node_modules/@types",
"src/types"
],

"strict": true
},
"include": [
"src/**/*",
Expand Down

0 comments on commit edc191f

Please sign in to comment.