1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-06 14:05:28 +00:00
bramw_baserow/web-frontend/intellij-idea.webpack.config.js

24 lines
597 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: {
'@': path.resolve(__dirname),
'@baserow': path.resolve(__dirname),
'@baserow_premium': path.resolve(
__dirname,
'../premium/web-frontend/modules/baserow_premium'
),
},
},
}