Skip to content
This repository has been archived by the owner on Sep 18, 2021. It is now read-only.

Commit

Permalink
Add tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
lambdalisue committed Feb 21, 2019
1 parent 11ab9ab commit d4fdaf4
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
{
"compilerOptions": {
"module": "commonjs",
"moduleResolution": "node",
"target": "esnext",
"sourceMap": true,
"declaration": true,
"lib": [
"es2017",
"dom"
],
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCaseInSwitch": true
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}

0 comments on commit d4fdaf4

Please sign in to comment.