postcat/donkey.config.js
Scarqin ddf7292ecb
feat: API Authorization (#251)
* feat: API Authorization

* fix: API Group flow

* perf(api-group): group select status

* build(e2e): delete image

---------

Co-authored-by: buqiyuan <1743369777@qq.com>
2023-03-14 22:56:04 +08:00

33 lines
691 B
JavaScript

const baseUrl = './src/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: '',
paramsFill: {
projectUuid: 'this.store.getCurrentProjectID',
workSpaceUuid: 'this.store.getCurrentWorkspaceUuid',
withItem: true
}
};