summaryrefslogtreecommitdiff
path: root/packages/gateway/tsconfig.json
diff options
context:
space:
mode:
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"
+ ]
+}