Skip to content

Commit

Permalink
tsconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
jdpigeon committed Jun 21, 2020
1 parent 4faad36 commit 57b81c1
Showing 1 changed file with 39 additions and 0 deletions.
39 changes: 39 additions & 0 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"compilerOptions": {
"target": "ES2018",
"module": "CommonJS",
"lib": ["dom", "esnext"],
"declaration": true,
"declarationMap": true,
"noEmit": true,
"jsx": "react",
"strict": true,
"pretty": true,
"sourceMap": true,
/* Additional Checks */
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
/* Module Resolution Options */
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"allowJs": true
},
"exclude": [
"test",
"release",
"app/main.prod.js",
"app/main.prod.js.map",
"app/renderer.prod.js",
"app/renderer.prod.js.map",
"app/style.css",
"app/style.css.map",
"app/dist",
"dll",
"app/main.js",
"app/main.js.map"
]
}

0 comments on commit 57b81c1

Please sign in to comment.