2025-11-25 22:23:19 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ES2020",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
|
|
|
|
"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
|
|
|
|
|
},
|
|
|
|
|
"include": ["src"],
|
|
|
|
|
"references": [
|
|
|
|
|
{ "path": "../core" },
|
|
|
|
|
{ "path": "../editor-core" },
|
2025-11-27 20:42:46 +08:00
|
|
|
{ "path": "../ui" }
|
2025-11-25 22:23:19 +08:00
|
|
|
]
|
|
|
|
|
}
|