1
1
mirror of https://github.com/n8n-io/n8n.git synced 2024-10-08 02:28:57 +03:00
n8n/packages/nodes-base/tsconfig.json

19 lines
420 B
JSON
Raw Normal View History

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