mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
21 lines
542 B
JSON
21 lines
542 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"lib": ["dom", "es2020", "es2022.error"],
|
|
"types": ["node", "jest"],
|
|
"noEmit": true,
|
|
"paths": {
|
|
"@test/*": ["./test/*"]
|
|
},
|
|
// TODO: remove all options below this line
|
|
"noImplicitReturns": false,
|
|
"noUnusedLocals": false,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": ["credentials/**/*.ts", "nodes/**/*.ts", "test/**/*.ts", "utils/**/*.ts"],
|
|
"references": [
|
|
{ "path": "../workflow/tsconfig.build.json" },
|
|
{ "path": "../core/tsconfig.build.json" }
|
|
]
|
|
}
|