feat: 提交资源

This commit is contained in:
han_han9
2025-10-28 21:55:41 +08:00
parent 591f398085
commit 55c4fcd9ae
2146 changed files with 172747 additions and 456 deletions

18
tsconfig.json Executable file
View File

@@ -0,0 +1,18 @@
{
/* Base configuration. Do not edit this field. */
"extends": "./temp/tsconfig.cocos.json",
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"strict": false,
"baseUrl": ".",
"paths": {
// 注意:这里的相对路径是相对于 tsconfig.json 所在的路径
// 由于本例中 tsconfig.json 和 import-map.json 位于同一目录,因此这里的相对路径也相似。
"@config/*": ["./assets/configs/generated/core/*"],
"@max-studio/*": ["extensions/max-studio/assets/max-studio/*"]
}
}
/* Add your custom configuration here. */
}