2025-11-25 22:23:19 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ES2020",
|
|
|
|
|
"moduleResolution": "bundler",
|
2025-12-26 14:50:35 +08:00
|
|
|
"lib": [
|
|
|
|
|
"ES2020",
|
|
|
|
|
"DOM",
|
|
|
|
|
"DOM.Iterable"
|
|
|
|
|
],
|
2025-11-25 22:23:19 +08:00
|
|
|
"strict": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"isolatedModules": true,
|
|
|
|
|
"jsx": "react-jsx",
|
2025-11-27 20:42:46 +08:00
|
|
|
"composite": true,
|
2025-11-25 22:23:19 +08:00
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
2025-11-27 20:42:46 +08:00
|
|
|
"outDir": "dist",
|
|
|
|
|
"rootDir": "src",
|
2025-11-25 22:23:19 +08:00
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true
|
|
|
|
|
},
|
2025-12-26 14:50:35 +08:00
|
|
|
"include": [
|
|
|
|
|
"src"
|
|
|
|
|
],
|
2025-11-25 22:23:19 +08:00
|
|
|
"references": [
|
2025-12-26 14:50:35 +08:00
|
|
|
{
|
|
|
|
|
"path": "../../framework/core"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"path": "../../editor/editor-core"
|
|
|
|
|
}
|
2025-11-25 22:23:19 +08:00
|
|
|
]
|
|
|
|
|
}
|