mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
9267e8fb12
fix(typescript): Use consistent typescript configs make all packages inherit tsconfig from the root tsconfig skips building tests. reformat all tsconfigs with prettier.
20 lines
421 B
JSON
20 lines
421 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"lib": ["dom", "es2020"],
|
|
"types": ["node", "jest"],
|
|
// TODO: remove all options below this line
|
|
"noImplicitReturns": false,
|
|
"noUnusedLocals": false,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": [
|
|
"credentials/**/*.ts",
|
|
"src/**/*.ts",
|
|
"nodes/**/*.ts",
|
|
"nodes/**/*.json",
|
|
"credentials/translations/**/*.json"
|
|
]
|
|
}
|