From 64c537957b068f9dbee5223f9c35581bef079557 Mon Sep 17 00:00:00 2001 From: Asko Nõmm Date: Mon, 13 Jan 2025 01:15:52 +0200 Subject: bump --- tsconfig.json | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') 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" + ] + } +} -- cgit v1.2.3