From 5bed3fe151f870065c81efd2b96b9283b39c762d Mon Sep 17 00:00:00 2001 From: kirillgroshkov Date: Mon, 13 May 2024 22:07:35 +0200 Subject: [PATCH] fix: build --- tsconfig.esm.prod.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tsconfig.esm.prod.json diff --git a/tsconfig.esm.prod.json b/tsconfig.esm.prod.json new file mode 100644 index 0000000..466cd91 --- /dev/null +++ b/tsconfig.esm.prod.json @@ -0,0 +1,8 @@ +{ + "extends": "./tsconfig.json", + "compilerOptions": { + "skipLibCheck": true, // because of the error in @types/markdown-it + "sourceMap": false, + }, + "exclude": ["**/__exclude", "src/test", "src/**/*.test.*"], +}