2025-10-27 09:29:11 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2025-11-27 20:42:46 +08:00
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ES2020",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"allowImportingTsExtensions": false,
|
|
|
|
|
"lib": ["ES2020", "DOM"],
|
|
|
|
|
"outDir": "./dist",
|
2025-10-27 09:29:11 +08:00
|
|
|
"rootDir": "./src",
|
2025-11-27 20:42:46 +08:00
|
|
|
"strict": true,
|
|
|
|
|
"composite": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
|
"resolveJsonModule": true
|
2025-10-27 09:29:11 +08:00
|
|
|
},
|
2025-11-27 20:42:46 +08:00
|
|
|
"include": ["src/**/*", "plugin.json"],
|
2025-10-27 09:29:11 +08:00
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
2025-11-27 20:42:46 +08:00
|
|
|
"dist",
|
2025-10-27 09:29:11 +08:00
|
|
|
"**/*.test.ts",
|
|
|
|
|
"**/*.spec.ts"
|
|
|
|
|
],
|
|
|
|
|
"references": [
|
2025-11-27 20:42:46 +08:00
|
|
|
{ "path": "../core" },
|
2025-12-01 22:28:51 +08:00
|
|
|
{ "path": "../engine-core" },
|
2025-11-27 20:42:46 +08:00
|
|
|
{ "path": "../editor-core" },
|
|
|
|
|
{ "path": "../editor-runtime" }
|
2025-10-27 09:29:11 +08:00
|
|
|
]
|
|
|
|
|
}
|