n8n/packages/node-dev/tsconfig.json

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

15 lines
373 B
JSON
Raw Normal View History

2019-06-23 10:35:23 +00:00
{
"extends": [
"@n8n/typescript-config/tsconfig.common.json",
"@n8n/typescript-config/tsconfig.backend.json"
],
2019-06-23 10:35:23 +00:00
"compilerOptions": {
"outDir": "dist",
2022-11-17 16:55:57 +00:00
"preserveSymlinks": true,
"tsBuildInfoFile": "dist/build.tsbuildinfo",
// TODO: remove all options below this line
"useUnknownInCatchVariables": false
2019-06-23 10:35:23 +00:00
},
"include": ["commands/**/*.ts", "src/**/*.ts"]
2019-06-23 10:35:23 +00:00
}