19 lines
633 B
JSON
Executable File
19 lines
633 B
JSON
Executable File
{
|
|
/* 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. */
|
|
}
|