- Add `pnpm build:rapier2d` command to automate Rapier2D WASM build process - Fix gen-src.mjs path to correctly locate thirdparty/rapier.js - Update init.ts to work with new wasm-pack web target (auto-initialization) - Fix behavior-tree-editor build config for asset-system dependency - Update README_CN.md and README.md with simplified build instructions
9 lines
269 B
TypeScript
9 lines
269 B
TypeScript
import { defineConfig } from 'tsup';
|
|
import { editorOnlyPreset } from '../../../tools/build-config/src/presets/plugin-tsup';
|
|
|
|
export default defineConfig({
|
|
...editorOnlyPreset({}),
|
|
tsconfig: 'tsconfig.build.json',
|
|
noExternal: ['@esengine/asset-system']
|
|
});
|