n8n/packages/nodes-base/tsconfig.json

18 lines
464 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": {
"lib": ["dom", "es2020", "es2022.error"],
"types": ["node", "jest"],
"noEmit": true,
// TODO: remove all options below this line
"noImplicitReturns": false,
"noUnusedLocals": false,
"useUnknownInCatchVariables": false
2019-06-23 03:35:23 -07:00
},
"include": ["credentials/**/*.ts", "nodes/**/*.ts"],
"references": [
{ "path": "../workflow/tsconfig.build.json" },
{ "path": "../core/tsconfig.build.json" }
2019-06-23 03:35:23 -07:00
]
}