aboutsummaryrefslogtreecommitdiff
path: root/tsconfig.json
diff options
context:
space:
mode:
authorDeterminant <tederminant@gmail.com>2019-04-08 22:03:39 +0000
committerDeterminant <tederminant@gmail.com>2019-04-08 22:03:39 +0000
commitad1da0e52f75ac94929f6a99195a69f839107933 (patch)
tree4d2204ea8c8a9e54058a346662eb354bf4400e13 /tsconfig.json
init
Diffstat (limited to 'tsconfig.json')
-rw-r--r--tsconfig.json17
1 files changed, 17 insertions, 0 deletions
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/**/*"
+ ]
+}