Bump TypeScript version

This commit is contained in:
Sindre Sorhus 2018-11-30 14:28:54 +07:00
parent b8a9fb457c
commit 9df6f4ebe9
4 changed files with 11 additions and 30 deletions

View file

@ -1,4 +1,5 @@
{
"extends": "@sindresorhus/tsconfig",
"compilerOptions": {
"outDir": "dist",
"target": "es2016",
@ -7,27 +8,6 @@
"es2017.sharedmemory",
"esnext.asynciterable",
"dom"
],
"module": "commonjs",
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"declaration": true,
"pretty": true,
"newLine": "lf",
"stripInternal": true,
"strict": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true,
"noEmitOnError": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true
},
"exclude": [
"node_modules",
"dist"
]
]
}
}