mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-12 00:23:48 +03:00
24 lines
635 B
JSON
24 lines
635 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ES2021",
|
|
"jsx": "react",
|
|
"jsxFactory": "window.SP_REACT.createElement",
|
|
"jsxFragmentFactory": "window.SP_REACT.Fragment",
|
|
"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", "index.d.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|