Files
n8n/packages/core/tsconfig.json
T
2023-05-17 10:53:03 +02:00

19 lines
450 B
JSON

{
"extends": "../../tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"types": ["node", "jest"],
"composite": true,
"noEmit": true,
"baseUrl": "src",
"paths": {
"@/*": ["./*"]
},
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
// TODO: remove all options below this line
"useUnknownInCatchVariables": false
},
"include": ["src/**/*.ts", "test/**/*.ts"],
"references": [{ "path": "../workflow/tsconfig.build.json" }]
}