Skip to content

Commit

Permalink
Merge pull request #2624 from Shopify/ko/skiplib
Browse files Browse the repository at this point in the history
Move compiler option to tsconfig.json
  • Loading branch information
KaanOzkan authored Sep 25, 2024
2 parents 7a38c88 + 52c8901 commit df939b0
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion vscode/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -687,7 +687,7 @@
"package": "vsce package --out vscode-ruby-lsp.vsix --baseImagesUrl https://github.com/Shopify/ruby-lsp/raw/HEAD/vscode",
"package_prerelease": "vsce package --pre-release --out vscode-ruby-lsp.vsix --baseImagesUrl https://github.com/Shopify/ruby-lsp/raw/HEAD/vscode",
"esbuild-base": "esbuild ./src/extension.ts --bundle --outfile=out/extension.js --external:vscode --format=cjs --platform=node",
"compile": "tsc --skipLibCheck -p ./",
"compile": "tsc -p ./",
"watch": "tsc -watch -p ./",
"pretest": "yarn run compile",
"format": "eslint '**/*.ts' --fix && prettier '**/*.{json,md,yaml,yml}' --write",
Expand Down
3 changes: 2 additions & 1 deletion vscode/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@
"noFallthroughCasesInSwitch": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true
"esModuleInterop": true,
"skipLibCheck": true
},
"exclude": ["node_modules", ".vscode-test"]
}

0 comments on commit df939b0

Please sign in to comment.