Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

Commit

Permalink
Fix sourcemap paths so VSCode can find them in the client
Browse files Browse the repository at this point in the history
  • Loading branch information
wingrunr21 committed Nov 20, 2019
1 parent 8bc1b84 commit f48318b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion packages/vscode-ruby-client/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"noUnusedLocals": false,
"noUnusedParameters": false,
"rootDir": "src",
"outDir": "dist"
"outDir": "dist/client"
},
"include": ["src"],
"exclude": ["node_modules"]
Expand Down
2 changes: 1 addition & 1 deletion packages/vscode-ruby-client/webpack.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ module.exports = {
filename: 'ruby.js',
path: path.resolve(__dirname, 'dist', 'client'),
libraryTarget: 'commonjs2',
devtoolModuleFilenameTemplate: '../[resource-path]',
devtoolModuleFilenameTemplate: '../../[resource-path]',
},
node: {
__dirname: false,
Expand Down

0 comments on commit f48318b

Please sign in to comment.