From c8cae5d8a9c0a77d4b2ac8460d57229b3df772a8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kristj=C3=A1n=20Oddsson?= Date: Thu, 23 Apr 2020 16:59:08 +0100 Subject: [PATCH] add a tsconfig.json file --- tsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..e3d9f22 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,17 @@ +{ + "include": ["src"], + "compilerOptions": { + "strict": true, + "module": "ESNext", + "esModuleInterop": true, + "lib": ["es6", "dom", "dom.iterable"], + "target": "ES2020", + "moduleResolution": "node", + "declaration": true, + "declarationMap": true, + "sourceMap": true, + "forceConsistentCasingInFileNames": true, + "rootDir": "src", + "outDir": "dist" + } +}