mirror of
https://gitlab.com/bramw/baserow.git
synced 2025-01-30 18:36:29 +00:00
19 lines
435 B
JavaScript
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),
|
|
},
|
|
},
|
|
}
|