decky-plugin-template/tsconfig.json

23 lines
592 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",
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,
"suppressImplicitAnyIndexErrors": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true
},
2023-02-17 20:31:32 +00:00
"include": ["src/ts"],
2022-04-23 00:42:11 +02:00
"exclude": ["node_modules"]
}