From 86242daf3bedb59789c2953b3fc203b9d43f3b9e Mon Sep 17 00:00:00 2001 From: Danila Fedorin Date: Fri, 6 Aug 2021 12:59:18 -0700 Subject: [PATCH] Add basic typescript configuration --- tsconfig.json | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 00000000..b7ae64e8 --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,8 @@ +{ + "compilerOptions": { + "strictNullChecks": true, + "noEmit": true, + "target": "es6" + }, + "include": ["src/**/*"], +}