diff options
| author | Fuwn <[email protected]> | 2025-09-24 19:04:14 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2025-09-24 19:15:34 -0700 |
| commit | 3b08854f33c9944761367597e6850fe6e27e3af3 (patch) | |
| tree | 8b6169d08cc85b0a6a74c761615c2a8e560ac105 /packages/gateway/tsconfig.json | |
| parent | refactor: Move interactions client to packages directory (diff) | |
| download | umabotdiscord-3b08854f33c9944761367597e6850fe6e27e3af3.tar.xz umabotdiscord-3b08854f33c9944761367597e6850fe6e27e3af3.zip | |
feat: Integrate gateway client
Diffstat (limited to 'packages/gateway/tsconfig.json')
| -rw-r--r-- | packages/gateway/tsconfig.json | 28 |
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" + ] +} |