diff options
Diffstat (limited to 'server/tsconfig.json')
-rw-r--r-- | server/tsconfig.json | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/server/tsconfig.json b/server/tsconfig.json new file mode 100644 index 0000000..29f8aa0 --- /dev/null +++ b/server/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "lib": ["ESNext"], + "module": "esnext", + "target": "esnext", + "moduleResolution": "bundler", + "moduleDetection": "force", + "allowImportingTsExtensions": true, + "strict": true, + "downlevelIteration": true, + "skipLibCheck": true, + "jsx": "preserve", + "allowSyntheticDefaultImports": true, + "forceConsistentCasingInFileNames": true, + "allowJs": true, + "noEmit": true, + "types": [ + "bun-types" // add Bun global + ] + } +} |