add tsconfig

This commit is contained in:
Kevin Qi 2019-04-20 19:09:08 -07:00
parent f743dc2dc1
commit 8eabcab853

12
tsconfig.json Normal file
View File

@ -0,0 +1,12 @@
{
"compilerOptions": {
"target": "es5",
"module": "commonjs",
"declaration": true,
"esModuleInterop": true,
"outDir": "./dist",
"strict": true
},
"include": ["src"],
"exclude": ["node_modules", "dist"]
}