Skip to content

Commit

Permalink
Configure stricter Typescript compiler options
Browse files Browse the repository at this point in the history
  • Loading branch information
kaklakariada committed Aug 10, 2023
1 parent 9be45aa commit 179c6e0
Showing 1 changed file with 19 additions and 19 deletions.
38 changes: 19 additions & 19 deletions extension/tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
{
"compilerOptions": {
"noImplicitAny": true,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"target": "es6",
"outDir": "dist/",
"declaration": true,
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
},
"include": [
"src/**/*"
],
"exclude": [
"src/**/*.test.ts"
],
}
"compilerOptions": {
"noImplicitAny": true,
"noEmitOnError": true,
"removeComments": false,
"sourceMap": true,
"target": "es6",
"outDir": "dist/",
"declaration": true,
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noUnusedLocals": true
},
"include": ["src/**/*"],
"exclude": ["src/**/*.test.ts"]
}

0 comments on commit 179c6e0

Please sign in to comment.