Files
esengine/tsconfig.json
2025-09-26 13:06:39 +08:00

21 lines
543 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"references": [
{ "path": "./packages/core" },
{ "path": "./packages/math" },
{ "path": "./packages/network-client" },
{ "path": "./packages/network-server" },
{ "path": "./packages/network-shared" }
],
"files": []
}