decky-plugin-template/tsconfig.json

23 lines
573 B
JSON
Raw Normal View History

2022-04-23 00:42:11 +02:00
{
"compilerOptions": {
"outDir": "dist",
"module": "ESNext",
"target": "ES2020",
"jsx": "react",
2022-05-28 21:50:24 -04:00
"jsxFactory": "window.SP_REACT.createElement",
"jsxFragmentFactory": "window.SP_REACT.Fragment",
2022-04-23 00:42:11 +02:00
"declaration": false,
"moduleResolution": "node",
"noUnusedLocals": true,
"noUnusedParameters": true,
"esModuleInterop": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": true,
"strict": true,
2024-06-13 18:11:44 -04:00
"allowSyntheticDefaultImports": true
2022-04-23 00:42:11 +02:00
},
"include": ["src"],
"exclude": ["node_modules"]
}