From 35fcd8e13eaac56588a1bfe9d52e95ea972d0b3f Mon Sep 17 00:00:00 2001 From: Wolfgang Knopki Date: Tue, 31 Aug 2021 09:37:28 +0000 Subject: [PATCH] Add tsconfig.json --- tsconfig.json | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..1b7f3580 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,11 @@ +{ + "compilerOptions": { + "target": "es6", + "module": "commonjs", + "rootDir": "./", + "outDir": "./built", + "esModuleInterop": true, + "strict": true, + "allowJs": true + } +} -- GitLab