summaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorJSON Derulo <136133082+xXJSONDeruloXx@users.noreply.github.com>2025-01-21 18:52:51 -0500
committerGitHub <noreply@github.com>2025-01-21 18:52:51 -0500
commitc1ebbc4b02c2e4fcb81661f2c0e87cd4f3f71147 (patch)
tree646a2a8fb4e099e9600f5bddb94607aaa8b69c24 /tsconfig.json
downloadDecky-Framegen-c1ebbc4b02c2e4fcb81661f2c0e87cd4f3f71147.tar.gz
Decky-Framegen-c1ebbc4b02c2e4fcb81661f2c0e87cd4f3f71147.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"]
+}