From d23a94f11bb4146884cfb6c9a860d3194a656878 Mon Sep 17 00:00:00 2001 From: Sam Vervaeck Date: Sat, 9 May 2020 22:36:03 +0200 Subject: [PATCH] treegen: Add missing tsconfig.json --- treegen/tsconfig.json | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 treegen/tsconfig.json diff --git a/treegen/tsconfig.json b/treegen/tsconfig.json new file mode 100644 index 000000000..66a22d44f --- /dev/null +++ b/treegen/tsconfig.json @@ -0,0 +1,13 @@ +{ + "compilerOptions": { + "target": "es2017", + "module": "commonjs", + "outDir": "./lib", + "removeComments": true, + "strict": true, + "esModuleInterop": true, + "inlineSourceMap": true, + "experimentalDecorators": true, + "emitDecoratorMetadata": true + } +}