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