Files
cocos/extensions/localization-editor/static/tsconfig.json
刘宇飞 d393302388 Complete Cocos Creator port with level bundles, themes, and tooling.
Adds level prefabs, theme assets, audio, extensions, and deployment scripts for the Unity WebGL migration.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-16 15:30:58 +08:00

36 lines
807 B
JSON

{
"compilerOptions": {
"module": "CommonJS",
"target": "ES2017",
"lib": [
"DOM",
"ES5",
"ES6",
"ES7",
"ES2015",
"ES2016",
"ES2017",
"ES2018",
"ES2019",
"ES2020",
"ES2021",
"ESNext"
],
"rootDir": "./assets",
"declaration": true,
"declarationDir": "../@types/runtime",
"emitDeclarationOnly": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"typeRoots": ["../@types"],
"types": [
"intl",
"@cocos/creator-types/editor",
"@cocos/creator-types/engine"
],
},
"exclude": [
"../@types/**/*"
],
}