From 7df5792e30e354251a4c93b5f1d65a7a9e4fa030 Mon Sep 17 00:00:00 2001 From: Sasha Date: Mon, 26 Feb 2024 23:41:11 +0100 Subject: [PATCH] fix ts build --- tsconfig.json | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tsconfig.json b/tsconfig.json index 8661658..8b11e4d 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -41,8 +41,12 @@ "lib": ["es2022", "dom"], "types": ["node", "mocha"], - "typeRoots": ["node_modules/@types"] + "typeRoots": ["node_modules/@types"], + "outDir": "dist/", + "rootDir": "src", }, + "include": ["src"], + "exclude": ["src/**/*.spec.ts", "src/test_utils"], "compileOnSave": false, "ts-node": { "files": true