summaryrefslogtreecommitdiff
path: root/packages/gateway/tsconfig.json
diff options
context:
space:
mode:
authorFuwn <[email protected]>2025-09-24 19:04:14 -0700
committerFuwn <[email protected]>2025-09-24 19:15:34 -0700
commit3b08854f33c9944761367597e6850fe6e27e3af3 (patch)
tree8b6169d08cc85b0a6a74c761615c2a8e560ac105 /packages/gateway/tsconfig.json
parentrefactor: Move interactions client to packages directory (diff)
downloadumabotdiscord-3b08854f33c9944761367597e6850fe6e27e3af3.tar.xz
umabotdiscord-3b08854f33c9944761367597e6850fe6e27e3af3.zip
feat: Integrate gateway client
Diffstat (limited to 'packages/gateway/tsconfig.json')
-rw-r--r--packages/gateway/tsconfig.json28
1 files changed, 28 insertions, 0 deletions
diff --git a/packages/gateway/tsconfig.json b/packages/gateway/tsconfig.json
new file mode 100644
index 0000000..c2767fd
--- /dev/null
+++ b/packages/gateway/tsconfig.json
@@ -0,0 +1,28 @@
+{
+ "compilerOptions": {
+ "target": "ES2022",
+ "module": "ESNext",
+ "moduleResolution": "node",
+ "allowSyntheticDefaultImports": true,
+ "esModuleInterop": true,
+ "allowJs": true,
+ "strict": true,
+ "skipLibCheck": true,
+ "forceConsistentCasingInFileNames": true,
+ "resolveJsonModule": true,
+ "isolatedModules": true,
+ "noEmit": false,
+ "outDir": "./dist",
+ "rootDir": "./src",
+ "declaration": true,
+ "declarationMap": true,
+ "sourceMap": true
+ },
+ "include": [
+ "src/**/*.ts"
+ ],
+ "exclude": [
+ "node_modules",
+ "dist"
+ ]
+}