Add 'tsconfig.json'

This commit is contained in:
Garrett Mills 2021-03-25 14:00:13 +00:00
parent bc1387ee31
commit a8db742ae3

13
tsconfig.json Normal file
View File

@ -0,0 +1,13 @@
{
"compilerOptions": {
"target": "es6",
"module": "commonjs",
"declaration": true,
"outDir": "./lib",
"strict": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": ["src"],
"exclude": ["node_modules"]
}