mirror of
https://github.com/garronej/ts-ci.git
synced 2025-11-30 21:43:05 +00:00
Update tsconfig.json
This commit is contained in:
parent
95a03e277d
commit
c3793ec81b
1 changed files with 9 additions and 5 deletions
|
|
@ -1,8 +1,9 @@
|
||||||
{
|
{
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"module": "commonjs",
|
"module": "CommonJS",
|
||||||
"target": "es5",
|
"target": "es5",
|
||||||
"lib": ["es2015"],
|
"lib": ["es2015", "DOM"],
|
||||||
|
"esModuleInterop": true,
|
||||||
"declaration": true,
|
"declaration": true,
|
||||||
"outDir": "./dist",
|
"outDir": "./dist",
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
|
|
@ -11,8 +12,11 @@
|
||||||
"noUnusedParameters": true,
|
"noUnusedParameters": true,
|
||||||
"incremental": true,
|
"incremental": true,
|
||||||
"strict": true,
|
"strict": true,
|
||||||
"downlevelIteration": true
|
"downlevelIteration": true,
|
||||||
|
"jsx": "react-jsx",
|
||||||
|
"noFallthroughCasesInSwitch": true
|
||||||
},
|
},
|
||||||
"filesGlob": ["src/**/*"],
|
"include": [
|
||||||
"exclude": ["node_modules/", "dist/**/*"]
|
"src"
|
||||||
|
]
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue