Update tsconfig.json

This commit is contained in:
Garrone Joseph 2021-02-20 11:15:49 +01:00 committed by GitHub
parent 95a03e277d
commit c3793ec81b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1,8 +1,9 @@
{
"compilerOptions": {
"module": "commonjs",
"module": "CommonJS",
"target": "es5",
"lib": ["es2015"],
"lib": ["es2015", "DOM"],
"esModuleInterop": true,
"declaration": true,
"outDir": "./dist",
"sourceMap": true,
@ -11,8 +12,11 @@
"noUnusedParameters": true,
"incremental": true,
"strict": true,
"downlevelIteration": true
"downlevelIteration": true,
"jsx": "react-jsx",
"noFallthroughCasesInSwitch": true
},
"filesGlob": ["src/**/*"],
"exclude": ["node_modules/", "dist/**/*"]
"include": [
"src"
]
}