Files
Genarrative/tsconfig.json
T
menghao 03a4410272
Project CI / Native shell tests (push) Failing after 11m56s
Project CI / Repository checks (push) Successful in 1m5s
Project CI / Frontend tests (push) Successful in 3m20s
Project CI / Backend tests (push) Successful in 4m1s
game agent无限画布开发 (#136)
主要工作是共享同一套“画布内核与通用 UI 源码”,网站和 Tauri 只分别实现宿主适配层。

---------

Co-authored-by: 段舒康 <kdletters@qq.com>
Co-authored-by: kdletters <kdletters@qq.com>
Reviewed-on: http://192.168.35.82/git/GenarrativeAI/Genarrative/pulls/136
Co-authored-by: menghao <mh18530625731@163.com>
Co-committed-by: menghao <mh18530625731@163.com>
2026-08-12 10:54:16 +08:00

53 lines
1.5 KiB
JSON

{
"compilerOptions": {
"target": "ES2022",
"experimentalDecorators": true,
"useDefineForClassFields": false,
"module": "ESNext",
"lib": ["ES2022", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"moduleResolution": "bundler",
"isolatedModules": true,
"moduleDetection": "force",
"allowJs": false,
"noUncheckedIndexedAccess": true,
"jsx": "react-jsx",
"paths": {
"@/*": ["./*"],
"@genarrative/image-canvas-core": [
"./packages/image-canvas-core/src/index.ts"
],
"@genarrative/image-canvas-react": [
"./packages/image-canvas-react/src/index.ts"
]
},
"allowImportingTsExtensions": true,
"noEmit": true
},
"include": [
"src/vite-env.d.ts",
"src/active-main.tsx",
"src/ActiveApp.tsx",
"src/AuthenticatedApp.tsx",
"src/routing/activeAppPageRoutes.ts",
"src/routing/activeAppRoutes.tsx"
],
"exclude": [
"src/hooks/useCombatFlow.ts",
"src/hooks/useStoryOptions.ts",
"src/services/creationEntryConfigService.ts",
"src/services/creationUrlState.ts",
"src/services/customWorld*.ts",
"src/services/input-devices/**",
"src/services/publicWorkCode.ts",
"src/services/runtimeGuestAuth.ts",
"src/services/runtimeRequest.ts",
"src/services/runtimeAudioFeedback.ts",
"src/services/useMocapInput.ts",
"src/services/wechatMiniProgramSubscribe.ts",
"src/types.ts",
"src/types/**",
"src/uiAssets.ts"
]
}