You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
765 B
15 lines
765 B
const path = require('path'); |
|
module.exports = { |
|
DEST: path.resolve(__dirname, '../dist'), |
|
NODE_MODULES: path.resolve(__dirname, '../node_modules'), |
|
UI: path.resolve(__dirname, '../src/ui'), |
|
SRC: path.resolve(__dirname, '../src'), |
|
CORE: path.resolve(__dirname, '../src/modules/core'), |
|
CONST: path.resolve(__dirname, '../src/modules/constants'), |
|
CONSTAINS: path.resolve(__dirname, '../private/constants.ts'), |
|
FINESHEET: path.resolve(__dirname, '../node_modules/finesheet'), |
|
AXIOS: path.resolve(__dirname, '../node_modules/axios'), |
|
BABEL_CONFIG: path.resolve(__dirname, '../babel.config.js'), |
|
RESIZER: path.resolve(__dirname, '../node_modules/js-resizable'), |
|
LOCAL_FINESHEET: path.resolve(__dirname, '../finesheet'), |
|
}; |