diff options
| author | Asko Nõmm <asko@nmm.ee> | 2025-01-13 01:15:52 +0200 |
|---|---|---|
| committer | Asko Nõmm <asko@nmm.ee> | 2025-01-13 01:15:52 +0200 |
| commit | 64c537957b068f9dbee5223f9c35581bef079557 (patch) | |
| tree | 9c6e758cac905cd720849333a07e52f5f697c9ba /tsconfig.json | |
| parent | fb04f7fdf55a6f70a54f116ceecbdfbaa592375f (diff) | |
bump
Diffstat (limited to 'tsconfig.json')
| -rw-r--r-- | tsconfig.json | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..f71ca1d --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,27 @@ +{ + "include": [ + "src" + ], + "exclude": [ + "**/*.test.ts" + ], + "compilerOptions": { + "module": "esnext", + "target": "esnext", + "moduleResolution": "node", + "allowImportingTsExtensions": true, + "declaration": true, + "skipLibCheck": true, + "rootDir": "src", + "sourceMap": true, + "outDir": "dist", + "strict": true, + "esModuleInterop": true, + "lib": [ + "esnext", + ], + "types": [ + "vitest/globals" + ] + } +} |
