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,
|
2025-12-26 14:50:35 +08:00
|
|
|
"lib": [
|
|
|
|
|
"ES2020",
|
|
|
|
|
"DOM"
|
|
|
|
|
],
|
2025-11-27 20:42:46 +08:00
|
|
|
"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-12-26 14:50:35 +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-12-26 14:50:35 +08:00
|
|
|
"src/esengine",
|
2025-10-27 09:29:11 +08:00
|
|
|
"**/*.test.ts",
|
|
|
|
|
"**/*.spec.ts"
|
|
|
|
|
],
|
|
|
|
|
"references": [
|
2025-12-26 14:50:35 +08:00
|
|
|
{
|
|
|
|
|
"path": "../core"
|
|
|
|
|
}
|
2025-10-27 09:29:11 +08:00
|
|
|
]
|
|
|
|
|
}
|