Files
decky-frontend-lib/tsconfig.json
AAGaming bffd530bda feat(*): add v4 webpack api and port everything to it
also restructures a bunch
2024-05-12 15:45:26 -04:00

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"]
}