Files
decky-frontend-lib/tsconfig.json

22 lines
499 B
JSON
Raw Permalink Normal View History

2022-04-22 22:31:54 +02:00
{
"compilerOptions": {
"outDir": "dist",
"module": "ESNext",
"target": "ES2020",
2025-10-15 00:04:31 -04:00
"jsx": "react-jsx",
2022-04-22 22:31:54 +02:00
"declaration": true,
"moduleResolution": "node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strict": true,
"removeComments": true,
2024-06-13 17:00:37 -04:00
"allowSyntheticDefaultImports": true
2022-04-22 22:31:54 +02:00
},
2024-06-13 17:00:37 -04:00
"include": ["src"],
2022-04-22 22:31:54 +02:00
"exclude": ["node_modules"]
}