mirror of https://github.com/vladmandic/human
34 lines
694 B
JSON
34 lines
694 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "es6",
|
|
"moduleResolution": "node",
|
|
"noImplicitAny": true,
|
|
"sourceMap": true,
|
|
"removeComments": false,
|
|
"preserveConstEnums": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"declaration": true,
|
|
"target": "es2018",
|
|
"lib": [
|
|
"es2018",
|
|
"dom"
|
|
],
|
|
"outDir": "./dist",
|
|
"noUnusedLocals": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"alwaysStrict": true,
|
|
"noUnusedParameters": false,
|
|
"pretty": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"allowUnreachableCode": false,
|
|
"incremental": true
|
|
},
|
|
"include": [
|
|
"src/"
|
|
],
|
|
"exclude": [
|
|
"node_modules/"
|
|
]
|
|
}
|