diff options
Diffstat (limited to 'tsconfig.base.json')
| -rw-r--r-- | tsconfig.base.json | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tsconfig.base.json b/tsconfig.base.json new file mode 100644 index 0000000..591a9e9 --- /dev/null +++ b/tsconfig.base.json @@ -0,0 +1,22 @@ +{ + "compilerOptions": { + "target": "ES2022", + "module": "ESNext", + "moduleResolution": "bundler", + "lib": ["ES2023"], + "types": ["bun"], + "strict": true, + "noUncheckedIndexedAccess": true, + "noImplicitOverride": true, + "exactOptionalPropertyTypes": true, + "verbatimModuleSyntax": true, + "isolatedModules": true, + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "composite": true, + "skipLibCheck": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true + } +} |
