Files
esengine/tsconfig.json

19 lines
450 B
JSON
Raw Normal View History

{
"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/ecs-network" }
],
"files": []
}