n8n/packages/core/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
546 B
JSON
Raw Normal View History

2019-06-23 03:35:23 -07:00
{
"extends": ["../../tsconfig.json", "../../tsconfig.backend.json"],
2019-06-23 03:35:23 -07:00
"compilerOptions": {
"rootDir": ".",
"baseUrl": "src",
"paths": {
"@/*": ["./*"]
},
"tsBuildInfoFile": "dist/typecheck.tsbuildinfo",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
// TODO: remove all options below this line
"useUnknownInCatchVariables": false
2019-06-23 03:35:23 -07:00
},
"include": ["src/**/*.ts", "test/**/*.ts"],
"references": [
{ "path": "../workflow/tsconfig.build.json" },
{ "path": "../@n8n/client-oauth2/tsconfig.build.json" }
]
2019-06-23 03:35:23 -07:00
}