Files
esengine/packages/tilemap-editor/tsconfig.json
YHH 3fb6f919f8 Feature/tilemap editor (#237)
* feat: 添加 Tilemap 编辑器插件和组件生命周期支持

* feat(editor-core): 添加声明式插件注册 API

* feat(editor-core): 改进tiledmap结构合并tileset进tiledmapeditor

* feat: 添加 editor-runtime SDK 和插件系统改进

* fix(ci): 修复SceneResourceManager里变量未使用问题
2025-11-25 22:23:19 +08:00

46 lines
877 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "ES2020",
"moduleResolution": "node",
"lib": ["ES2020", "DOM"],
"outDir": "./bin",
"rootDir": "./src",
"strict": true,
"composite": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"declaration": true,
"declarationMap": true,
"sourceMap": true,
"jsx": "react-jsx",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"noUnusedLocals": false,
"noUnusedParameters": false
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules",
"bin"
],
"references": [
{
"path": "../core"
},
{
"path": "../components"
},
{
"path": "../editor-core"
},
{
"path": "../tilemap"
}
]
}