From ad1da0e52f75ac94929f6a99195a69f839107933 Mon Sep 17 00:00:00 2001 From: Determinant Date: Mon, 8 Apr 2019 22:03:39 +0000 Subject: init --- tsconfig.json | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) create mode 100644 tsconfig.json (limited to 'tsconfig.json') diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..953c137 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,17 @@ +{ + "compilerOptions": { + "outDir": "./dist/", + "sourceMap": true, + "noImplicitAny": true, + "module": "commonjs", + "target": "es5", + "lib": ["dom", "es2016", "es2017", "esnext"], + "jsx": "react", + "typeRoots": ["./types", "./node_modules/@types"], + "allowSyntheticDefaultImports": true, + "esModuleInterop": true + }, + "include": [ + "./src/**/*" + ] +} -- cgit v1.2.3