From 237752d06f6e90be856e6fcc2f63c31dbbd55771 Mon Sep 17 00:00:00 2001 From: Tejas Kumar Date: Mon, 21 Oct 2019 11:01:03 +0200 Subject: [PATCH] REALLY keep tsonfig --- .gitkeep | 1 + tsconfig.json | 25 +++++++++++++++++++++++++ 2 files changed, 26 insertions(+) create mode 100644 .gitkeep create mode 100644 tsconfig.json diff --git a/.gitkeep b/.gitkeep new file mode 100644 index 00000000..15231cfe --- /dev/null +++ b/.gitkeep @@ -0,0 +1 @@ +tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..782933b2 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,25 @@ +{ + "exclude": ["node_modules", "dist", "lib", "__tests__", "**/*.test*", "**/*.spec*"], + "include": ["src"], + "compilerOptions": { + "skipLibCheck": true, + "target": "es5", + "module": "esnext", + "lib": ["es2015", "dom", "es2016.array.include", "es2017.object"], + "jsx": "react", + "declaration": true, + "declarationMap": true, + "rootDir": "./src", + "outDir": "./lib", + "downlevelIteration": true, + "strict": true, + "noUnusedLocals": true, + "noUnusedParameters": true, + "noImplicitReturns": true, + "noFallthroughCasesInSwitch": true, + "moduleResolution": "node", + "allowSyntheticDefaultImports": true, + "esModuleInterop": true, + "inlineSourceMap": true + } +}