Update typescript

This commit is contained in:
Jannis Mattheis 2019-09-28 16:51:16 +02:00
parent b4395f02f1
commit 4b1996534c
2 changed files with 17 additions and 5 deletions

View File

@ -59,7 +59,7 @@
"tree-kill": "^1.2.0",
"tslint": "^5.20.0",
"tslint-sonarts": "^1.7.0",
"typescript": "^3.0.1",
"typescript": "3.6.2",
"wait-on": "^3.0.1"
},
"eslintConfig": {

View File

@ -1,10 +1,12 @@
{
"compilerOptions": {
"baseUrl": ".",
"baseUrl": "src",
"outDir": "build/dist",
"module": "esnext",
"target": "es5",
"lib": ["es6", "dom"],
"lib": [
"es6",
"dom"
],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
@ -18,8 +20,15 @@
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true
"experimentalDecorators": true,
"skipLibCheck": true,
"esModuleInterop": true,
"strict": true,
"isolatedModules": true,
"noEmit": true,
"module": "esnext",
"resolveJsonModule": true,
"keyofStringsOnly": true
},
"exclude": [
"node_modules",
@ -29,5 +38,8 @@
"webpack",
"jest",
"src/setupTests.ts"
],
"include": [
"src"
]
}