测试流程、搭建多语言框架

This commit is contained in:
2025-07-20 14:38:38 +08:00
parent 1ffc1b5cf0
commit 2f7eb16f22
94 changed files with 609014 additions and 9 deletions
@@ -0,0 +1,36 @@
{
"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",
"../../../@types/cc",
"../../../@types/editor",
"@editor/library-type"
],
},
"exclude": [
"../@types/**/*"
],
}