mirror of
https://gitee.com/vuejs/vue.git
synced 2024-12-03 04:28:04 +08:00
10 lines
336 B
JavaScript
10 lines
336 B
JavaScript
var path = require('path')
|
|
|
|
module.exports = {
|
|
vue: path.resolve(__dirname, '../src/entries/web-runtime-with-compiler'),
|
|
compiler: path.resolve(__dirname, '../src/compiler'),
|
|
core: path.resolve(__dirname, '../src/core'),
|
|
shared: path.resolve(__dirname, '../src/shared'),
|
|
web: path.resolve(__dirname, '../src/platforms/web')
|
|
}
|