From bef17025b177e76feba59dda0f87b66893674e1c Mon Sep 17 00:00:00 2001 From: Alice Gaudon Date: Thu, 23 Apr 2020 14:55:58 +0200 Subject: [PATCH] Add tsconfig.json --- tsconfig.json | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..a6bf63a --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,19 @@ +{ + "compilerOptions": { + "module": "CommonJS", + "esModuleInterop": true, + "outDir": "dist", + "target": "ES6", + "strict": true, + "lib": [ + "es2020" + ], + "typeRoots": [ + "./node_modules/@types" + ] + }, + "include": [ + "src/**/*", + "node_modules/wms-core" + ] +} \ No newline at end of file