nodelogging/tsconfig.json

19 lines
328 B
JSON
Raw Permalink Normal View History

2017-08-23 14:45:03 +00:00
{
"compilerOptions": {
"module": "commonjs",
"target": "es2017",
"noImplicitAny": false,
"sourceMap": true,
"outDir": "out",
"declaration": true,
"typeRoots": [
"node_modules/@types"
]
},
"exclude": [
"node_modules"
],
"include": [
"src"
]
}