CGamesClient/tsconfig.json
2025-12-23 16:42:04 +08:00

16 lines
516 B
JSON

{
/* Base configuration. Do not edit this field. */
"extends": "./temp/tsconfig.cocos.json",
/* Add your custom configuration here. */
"compilerOptions": {
"strict": false,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"target": "ES2018",
"experimentalDecorators": true, // 关键:开启旧版装饰器
"emitDecoratorMetadata": true, // 关键:配合 Colyseus 使用
"useDefineForClassFields": false // 建议:防止某些属性初始化的差异
}
}