Skip to content

Commit

Permalink
Create tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
yulmwu committed Apr 15, 2022
1 parent 47361a6 commit 2064366
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "ES6",
"outDir": "out",
"lib": [
"ES6"
],
"sourceMap": true,
"rootDir": "src",
"strict": true /* enable all strict type-checking options */
/* Additional Checks */
// "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. */
}
}

0 comments on commit 2064366

Please sign in to comment.