From 96ed743c02f0c32831354390808644b54a646d9e Mon Sep 17 00:00:00 2001 From: Adhiraj Singh Date: Wed, 1 Jul 2020 16:31:02 +0530 Subject: [PATCH] Create tsconfig.json --- tsconfig.json | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..6366d5f --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,16 @@ +{ + "compilerOptions": { + "target": "es6", + "module": "commonjs", + "allowJs": true, + "checkJs": false, + "outDir": "build/", + "strict": false, + "noImplicitThis": true, + "esModuleInterop": true, + "forceConsistentCasingInFileNames": true, + "resolveJsonModule": true + }, + "include": ["*.ts"], + "exclude": ["node_modules", "*/Tests.ts"] +} \ No newline at end of file