mirror of
https://github.com/WFCD/warframe-worldstate-data.git
synced 2026-02-12 09:10:59 -06:00
16 lines
280 B
TypeScript
16 lines
280 B
TypeScript
import { defineConfig } from 'tsdown';
|
|
|
|
export default defineConfig({
|
|
entry: [
|
|
'exports.ts',
|
|
'safeImport.ts',
|
|
'types.ts',
|
|
'./tools/timeDate.ts',
|
|
'./tools/translation.ts',
|
|
'./tools/utilities.ts',
|
|
],
|
|
copy: ['./data'],
|
|
dts: true,
|
|
format: 'esm',
|
|
});
|