feat: Implemented external ryujinx integration plugin refactor: moved sdk types and schemas to own workspace package fix: Fixed emulator launch with no game
49 lines
No EOL
1,000 B
JSON
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"
|
|
]
|
|
} |