-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathbuild.config.ts
More file actions
26 lines (25 loc) · 858 Bytes
/
build.config.ts
File metadata and controls
26 lines (25 loc) · 858 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import { defineBuildConfig } from 'unbuild';
export default defineBuildConfig({
entries: [
'src/main',
'src/address-book/AddressBook',
'src/browser-detection/BrowserDetection',
'src/currency-info/CurrencyInfo',
'src/clipboard/Clipboard',
'src/cookie/Cookie',
'src/fiat-api/FiatApi',
'src/formattable-number/FormattableNumber',
'src/request-link-encoding/RequestLinkEncoding',
'src/tweenable/Tweenable',
'src/utf8-tools/Utf8Tools',
'src/rate-limit-scheduler/RateLimitScheduler',
'src/validation-utils/ValidationUtils',
'src/rewards-calculator/rewards-calculator',
'src/albatross-policy/albatross-policy',
'src/supply-calculator/supply-calculator',
],
declaration: true,
rollup: {
emitCJS: true,
},
});