From 6fce8ab698b21950d671560139b442f6af710c48 Mon Sep 17 00:00:00 2001 From: Andrew Kemp Date: Thu, 5 Mar 2020 11:10:19 -0500 Subject: [PATCH] Setup Typescript --- tsconfig.json | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..ef8f864 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,28 @@ + +{ + "compilerOptions": { + "module": "commonjs", + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "experimentalDecorators": true, + "emitDecoratorMetadata": true, + "target": "es6", + "noImplicitAny": false, + "moduleResolution": "node", + "sourceMap": true, + "outDir": "dist", + "baseUrl": ".", + "importHelpers": true, + "types": ["jest"], + "typeRoots": [ + "node_modules/@types" + ], + "lib": [ + "es2017", + "dom" + ] + }, + "include": [ + "src/**/*" + ] +} \ No newline at end of file