Removing all Node specific stuff from NodeLogging.

This commit is contained in:
Fabian
2019-03-31 23:35:23 -04:00
commit e489a15892
11 changed files with 3971 additions and 0 deletions

19
tsconfig.json Normal file
View File

@ -0,0 +1,19 @@
{
"compilerOptions": {
"module": "commonjs",
"target": "es2017",
"noImplicitAny": false,
"sourceMap": true,
"outDir": "out",
"declaration": true,
"typeRoots": [
"node_modules/@types"
]
},
"exclude": [
"node_modules"
],
"include": [
"src"
]
}