1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-01-30 18:36:29 +00:00
bramw_baserow/web-frontend/intellij-idea.webpack.config.js
2020-11-30 18:52:39 +00:00

19 lines
435 B
JavaScript

/**
* This file can be used in combination with intellij idea so the @baserow path
* resolves.
*
* Intellij IDEA: Preferences -> Languages & Frameworks -> JavaScript -> Webpack ->
* webpack configuration file
*/
const path = require('path')
module.exports = {
resolve: {
extensions: ['.js', '.json', '.vue', '.ts'],
root: path.resolve(__dirname),
alias: {
'@baserow': path.resolve(__dirname),
},
},
}