From d6f6caf7ca92fb2ba2e81c8fd92a47bd8bd60de0 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 21 Jul 2024 17:57:56 +0200 Subject: [PATCH] Create javascript tsconfig.json --- integrations/javascript/tsconfig.json | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 integrations/javascript/tsconfig.json diff --git a/integrations/javascript/tsconfig.json b/integrations/javascript/tsconfig.json new file mode 100644 index 0000000..8671cd0 --- /dev/null +++ b/integrations/javascript/tsconfig.json @@ -0,0 +1,21 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "esnext", + "moduleResolution": "node", + "lib": [ + "es2017", + "es7", + "es6", + "dom" + ], + "declaration": true, + "outDir": "dist", + "strict": true, + "esModuleInterop": true + }, + "exclude": [ + "node_modules", + "dist" + ] +} \ No newline at end of file