gameflow-deck/tsconfig.json
Simeon Radivoev 38cb752552
feat: Implemented public plugin system accessible from the store.
feat: Implemented external ryujinx integration plugin
refactor: moved sdk types and schemas to own workspace package
fix: Fixed emulator launch with no game
2026-05-10 02:21:01 +03:00

49 lines
No EOL
1,000 B
JSON

{
"compilerOptions": {
"target": "ES2022",
"useDefineForClassFields": true,
"lib": [
"ES2024",
"DOM",
"DOM.Iterable"
],
"module": "ESNext",
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"isolatedModules": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"strict": true,
"noUnusedLocals": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@simeonradivoev/gameflow-sdk/*": ["./src/packages/gameflow-sdk/*"],
"@/*": [
"./src/*"
],
"~/*": [
"./*"
],
"@shared/*": [
"./src/shared/*"
],
"@clients/*": [
"./src/clients/*"
],
"@schema/*": [
"./src/bun/api/schema/*"
],
"@queries/*": [
"./src/mainview/scripts/queries/*"
]
}
},
"include": [
"src",
"scripts",
"vite.config.ts",
"vite-env-override.d.ts"
]
}