n8n/packages/nodes-base/tsconfig.json

20 lines
421 B
JSON
Raw Normal View History

2019-06-23 03:35:23 -07:00
{
"extends": "../../tsconfig.json",
2019-06-23 03:35:23 -07:00
"compilerOptions": {
"outDir": "dist",
"lib": ["dom", "es2020"],
"types": ["node", "jest"],
// TODO: remove all options below this line
"noImplicitReturns": false,
"noUnusedLocals": false,
"useUnknownInCatchVariables": false
2019-06-23 03:35:23 -07:00
},
"include": [
"credentials/**/*.ts",
"src/**/*.ts",
"nodes/**/*.ts",
"nodes/**/*.json",
"credentials/translations/**/*.json"
2019-06-23 03:35:23 -07:00
]
}