From 160d6688dc1bb467aba0c4e39457193478906678 Mon Sep 17 00:00:00 2001 From: Asko Nõmm Date: Sun, 13 Apr 2025 22:29:11 +0300 Subject: Initial commit --- tsconfig.json | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..8f386d7 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,23 @@ +{ + "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", + "webworker" + ], + "types": ["vitest/globals"] + } +} \ No newline at end of file -- cgit v1.2.3