From b08c553749f6619815c171175dd6bcf8ee6ab035 Mon Sep 17 00:00:00 2001 From: Asko Nõmm Date: Mon, 28 Apr 2025 22:25:28 +0300 Subject: Refactor for only the Node runtime. --- tsconfig.json | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..60e3198 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,20 @@ +{ + "include": ["src"], + "compilerOptions": { + "module": "NodeNext", + "target": "esnext", + "moduleResolution": "nodenext", + "allowImportingTsExtensions": true, + "noEmit": true, + "declaration": true, + "skipLibCheck": true, + "rootDir": "src", + "sourceMap": true, + "outDir": "dist", + "strict": true, + "esModuleInterop": true, + "exactOptionalPropertyTypes": true, + "lib": ["esnext"], + "types": ["vitest/globals"] + } +} -- cgit v1.2.3