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