Skip to content

Commit

Permalink
adjusting the configuration of typescript
Browse files Browse the repository at this point in the history
  • Loading branch information
maliknajjar committed Jan 20, 2024
1 parent f3cc799 commit 47c5bc7
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
{
"compilerOptions": {
"target": "ESNext",
"target": "es2015",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ESNext", "DOM"],
"moduleResolution": "Node",
"module": "commonjs",
"lib": ["esnext", "DOM"],
"moduleResolution": "node",
"strict": true,
"resolveJsonModule": true,
"isolatedModules": true,
Expand All @@ -18,6 +18,7 @@
"declarationMap": true,
"declarationDir": "types",
"outDir": "js_dist",
"downlevelIteration": true
},
"include": ["src"]
}

0 comments on commit 47c5bc7

Please sign in to comment.