mirror of
https://gitee.com/eolink_admin/postcat.git
synced 2024-12-02 03:38:03 +08:00
a51feb0311
* feat: update extension UI * fix(components): [manage-access] a tag rename to span * feat: update e2e Co-authored-by: buqiyuan <1743369777@qq.com> Co-authored-by: 夜鹰 <17kungfuboy@gmail.com>
28 lines
553 B
JavaScript
28 lines
553 B
JavaScript
const baseUrl = './src/workbench/browser/src/app/shared/services/storage/';
|
|
module.exports = {
|
|
entry: {
|
|
// target: ["./test/apiData.ts", "./test/env.ts"]
|
|
target: [baseUrl + 'api.ts']
|
|
},
|
|
output: [
|
|
{
|
|
mode: 'angular',
|
|
name: 'remote.service',
|
|
path: baseUrl
|
|
},
|
|
{
|
|
mode: 'dexie',
|
|
name: 'local.service',
|
|
path: baseUrl
|
|
},
|
|
{
|
|
mode: 'glue',
|
|
name: 'api.service',
|
|
path: baseUrl
|
|
}
|
|
// schema: "./output/entities"
|
|
// typeorm: "./output/typeorm"
|
|
],
|
|
remoteBase: ''
|
|
};
|