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": {
|
||||
"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"
|
||||
]
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue