Skip to content

Commit

Permalink
fml
Browse files Browse the repository at this point in the history
  • Loading branch information
aviramha committed Jul 5, 2024
1 parent 36ac55f commit c3570d4
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@
"eslint": "^8.56.0",
"mocha": "^10.6.0",
"ts-loader": "^9.4.2",
"typescript": "^5.5",
"typescript": "^5",
"vscode-extension-tester": "^8.3.1",
"webpack": "^5.76.0",
"webpack-cli": "^5.0.1"
Expand Down
7 changes: 4 additions & 3 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
{
"compilerOptions": {
"module": "es6",
"target": "ES2020",
"module": "commonjs",
"target": "es6",
"outDir": "out",
"lib": [
"ES2020"
"es6"
],
"sourceMap": true,
"rootDir": "src",
"skipLibCheck": true,
"esModuleInterop": true, // Without this, will report errors in k8s client node modules https://github.com/kubernetes-client/javascript/issues/751#issuecomment-986953203
"strict": true /* enable all strict type-checking options */
/* Additional Checks */
Expand Down

0 comments on commit c3570d4

Please sign in to comment.