Skip to content

Commit

Permalink
chore: update tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
jaywcjlove committed Jan 2, 2022
1 parent cc4c3e3 commit 0b337ca
Showing 1 changed file with 15 additions and 22 deletions.
37 changes: 15 additions & 22 deletions tsconfig.json
@@ -1,28 +1,21 @@
{
"compilerOptions": {
"baseUrl": ".",
"target": "ES5",
"lib": [
"es2015",
"es6",
"dom"
],
"target": "es5",
"lib": ["es2015", "es6"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"module": "esnext",
"isolatedModules": true,
"declaration": true,
"esModuleInterop": true,
"isolatedModules": false,
"sourceMap": false,
"allowJs": false,
"moduleResolution": "node",
"rootDir": "src",
"baseUrl": ".",
"outDir": "lib",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"importHelpers": true,
"strictNullChecks": true,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": true
"noFallthroughCasesInSwitch": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"noEmit": true
}
}
}

0 comments on commit 0b337ca

Please sign in to comment.