- 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
19 lines
516 B
JSON
19 lines
516 B
JSON
{
|
|
"extends": "../../../../tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"composite": false,
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"outDir": "./dist",
|
|
"rootDir": "./src",
|
|
"jsx": "react-jsx",
|
|
"skipLibCheck": true,
|
|
"moduleResolution": "bundler",
|
|
"paths": {
|
|
"@esengine/asset-system": ["../../../engine/asset-system/src"]
|
|
}
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["node_modules", "dist", "**/*.test.ts"]
|
|
}
|