mirror of
https://github.com/SteamDeckHomebrew/decky-frontend-lib.git
synced 2026-05-18 01:00:08 +02:00
24 lines
588 B
JSON
24 lines
588 B
JSON
{
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"module": "ESNext",
|
|
"target": "ES2020",
|
|
"jsx": "react",
|
|
"jsxFactory": "window.SP_REACT.createElement",
|
|
"declaration": true,
|
|
"moduleResolution": "node",
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"esModuleInterop": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noImplicitAny": true,
|
|
"strict": true,
|
|
"removeComments": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src", "globals.d.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|