chore(area-data): use Rslib to build (#13251)

This commit is contained in:
neverland
2024-12-08 16:34:17 +08:00
committed by GitHub
parent 8d17b4076d
commit e825175615
4 changed files with 22 additions and 18 deletions

View File

@@ -0,0 +1,11 @@
import { defineConfig } from '@rslib/core';
export default defineConfig({
lib: [
{ format: 'esm', syntax: ['Chrome 53'], dts: true },
{ format: 'cjs', syntax: ['Chrome 53'] },
],
output: {
target: 'web',
},
});