2025-11-25 22:23:19 +08:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2020",
|
|
|
|
|
"module": "ES2020",
|
2025-11-27 20:42:46 +08:00
|
|
|
"moduleResolution": "bundler",
|
2025-11-25 22:23:19 +08:00
|
|
|
"allowImportingTsExtensions": false,
|
|
|
|
|
"lib": ["ES2020", "DOM"],
|
|
|
|
|
"outDir": "./bin",
|
|
|
|
|
"rootDir": "./src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"composite": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"declarationMap": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"removeComments": false,
|
|
|
|
|
"noImplicitAny": true,
|
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"noImplicitThis": true,
|
|
|
|
|
"noUnusedLocals": false,
|
|
|
|
|
"noUnusedParameters": false,
|
|
|
|
|
"exactOptionalPropertyTypes": false,
|
|
|
|
|
"noImplicitOverride": true,
|
|
|
|
|
"noPropertyAccessFromIndexSignature": false,
|
|
|
|
|
"noUncheckedIndexedAccess": false,
|
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
|
"emitDecoratorMetadata": true,
|
|
|
|
|
"importHelpers": true,
|
|
|
|
|
"downlevelIteration": true,
|
|
|
|
|
"isolatedModules": false,
|
|
|
|
|
"allowJs": true,
|
2025-11-27 20:42:46 +08:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"jsx": "react-jsx"
|
2025-11-25 22:23:19 +08:00
|
|
|
},
|
|
|
|
|
"include": [
|
2025-11-27 20:42:46 +08:00
|
|
|
"src/**/*",
|
|
|
|
|
"plugin.json"
|
2025-11-25 22:23:19 +08:00
|
|
|
],
|
|
|
|
|
"exclude": [
|
|
|
|
|
"node_modules",
|
|
|
|
|
"bin",
|
|
|
|
|
"**/*.test.ts",
|
|
|
|
|
"**/*.spec.ts"
|
|
|
|
|
],
|
|
|
|
|
"references": [
|
|
|
|
|
{
|
|
|
|
|
"path": "../core"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"path": "../components"
|
|
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"path": "../ecs-engine-bindgen"
|
2025-11-27 20:42:46 +08:00
|
|
|
},
|
|
|
|
|
{
|
|
|
|
|
"path": "../editor-core"
|
2025-11-25 22:23:19 +08:00
|
|
|
}
|
|
|
|
|
]
|
|
|
|
|
}
|