mirror of
https://github.com/ToolJet/ToolJet
synced 2026-04-21 21:47:17 +00:00
14 lines
No EOL
418 B
JavaScript
14 lines
No EOL
418 B
JavaScript
var path = require("path");
|
|
|
|
module.exports = {
|
|
resolve: {
|
|
alias: {
|
|
Fixtures: path.resolve(__dirname, "fixtures"),
|
|
Plugins: path.resolve(__dirname, "plugins"),
|
|
Support: path.resolve(__dirname, "support"),
|
|
Texts: path.resolve(__dirname, "constants/texts"),
|
|
Selectors: path.resolve(__dirname, "constants/selectors"),
|
|
Constants: path.resolve(__dirname, "constants")
|
|
},
|
|
}
|
|
}; |