mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-12 08:33:34 +03:00
* add rollup watch command, add pnpm lockfile * wait for react * add WIP patcher, window hook, and webpack * fix typescript, fix React, lint, add pnpm to gitignore * actually fix react * show frontend JS errors in console * cleanup * Add Router hook * Remove console.log * Expose routerHook in createPluginAPI Co-authored-by: Jonas Dellinger <jonas@dellinger.dev>
24 lines
589 B
JSON
24 lines
589 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"jsx": "react",
|
|
"jsxFactory": "window.SP_REACT.createElement",
|
|
"declaration": false,
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules"]
|
|
}
|