Skip to content

Commit

Permalink
Build: update TypeScript config file
Browse files Browse the repository at this point in the history
  • Loading branch information
mihaiconstantin committed Jul 7, 2022
1 parent 30574ee commit c338d7c
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2020",
"target": "ES2021",
"outDir": "out",
"lib": [
"ES2020"
"ES2021",
"dom"
],
"sourceMap": true,
"rootDir": "src",
Expand All @@ -14,5 +15,9 @@
// "noImplicitReturns": true, /* Report error when not all code paths in function return a value. */
// "noFallthroughCasesInSwitch": true, /* Report errors for fallthrough cases in switch statement. */
// "noUnusedParameters": true, /* Report errors on unused parameters. */
}
},
"exclude": [
"node_modules",
".vscode-test"
]
}

0 comments on commit c338d7c

Please sign in to comment.