mirror of
https://github.com/SteamDeckHomebrew/decky-loader.git
synced 2026-06-11 16:13:51 +03:00
22 lines
521 B
JSON
22 lines
521 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ES2021",
|
|
"jsx": "react-jsx",
|
|
"declaration": false,
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src", "index.d.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|