From 8eabcab853ccf92f86318fc4225f4aeedecf3925 Mon Sep 17 00:00:00 2001 From: Kevin Qi Date: Sat, 20 Apr 2019 19:09:08 -0700 Subject: [PATCH] add tsconfig --- tsconfig.json | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 tsconfig.json diff --git a/tsconfig.json b/tsconfig.json new file mode 100644 index 0000000..884fb0b --- /dev/null +++ b/tsconfig.json @@ -0,0 +1,12 @@ +{ + "compilerOptions": { + "target": "es5", + "module": "commonjs", + "declaration": true, + "esModuleInterop": true, + "outDir": "./dist", + "strict": true + }, + "include": ["src"], + "exclude": ["node_modules", "dist"] +}