summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorKurt Himebauch <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-07-11 07:04:30 -0400
committerGitHub <noreply@github.com>2025-07-11 07:04:30 -0400
commitfb4516cabb652774ce60e0683bda1af88cc2d09f (patch)
tree7d100b11d2399ca467ce3be4a38e08695eb2bca2 /tsconfig.json
downloaddecky-lsfg-vk-fb4516cabb652774ce60e0683bda1af88cc2d09f.tar.gz
decky-lsfg-vk-fb4516cabb652774ce60e0683bda1af88cc2d09f.zip
Initial commit
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json22
1 files changed, 22 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json
new file mode 100644
index 0000000..626c60f
--- /dev/null
+++ b/tsconfig.json
@@ -0,0 +1,22 @@
+{
+ "compilerOptions": {
+ "outDir": "dist",
+ "module": "ESNext",
+ "target": "ES2020",
+ "jsx": "react",
+ "jsxFactory": "window.SP_REACT.createElement",
+ "jsxFragmentFactory": "window.SP_REACT.Fragment",
+ "declaration": false,
+ "moduleResolution": "node",
+ "noUnusedLocals": true,
+ "noUnusedParameters": true,
+ "esModuleInterop": true,
+ "noImplicitReturns": true,
+ "noImplicitThis": true,
+ "noImplicitAny": true,
+ "strict": true,
+ "allowSyntheticDefaultImports": true
+ },
+ "include": ["src"],
+ "exclude": ["node_modules"]
+}