From 84801010d57ff6ceca7c5313bac0e599a714b117 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Stefan=20Maa=C3=9Fen?= Date: Tue, 20 Jul 2021 13:34:22 +0200 Subject: [PATCH] merged with wekan master @ v5.38 --- build.sh | 3 +++ jsconfig.json | 8 ++++++++ 2 files changed, 11 insertions(+) create mode 100755 build.sh create mode 100644 jsconfig.json diff --git a/build.sh b/build.sh new file mode 100755 index 000000000..d03517ebe --- /dev/null +++ b/build.sh @@ -0,0 +1,3 @@ +#!/bin/sh + +podman build --force-rm -t localhost/wekan:v3.89-ad . diff --git a/jsconfig.json b/jsconfig.json new file mode 100644 index 000000000..f8d34e8c9 --- /dev/null +++ b/jsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "module": "commonjs", + "target": "es6" + }, + "exclude": ["node_modules", "**/node_modules/*"], + "include": ["server/**/*", "client/**/*","config/**/*", "packages/**/*"] +}