2019-09-04 16:01:08 -04:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"incremental": true,
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"lib": [ "es6" ],
|
|
|
|
"module": "commonjs",
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"strict": true,
|
|
|
|
"target": "es5",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"*": [
|
|
|
|
"node_modules/*",
|
|
|
|
"src/types/*",
|
|
|
|
],
|
2019-10-21 10:27:46 -04:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": [
|
2019-11-11 15:37:01 -05:00
|
|
|
"bin/*",
|
2019-10-21 10:27:46 -04:00
|
|
|
"src/**/*",
|
|
|
|
"test/**/*"
|
|
|
|
]
|
2019-09-04 16:01:08 -04:00
|
|
|
}
|