mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44: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.
15 lines
381 B
JSON
15 lines
381 B
JSON
{
|
|
"extends": "../../tsconfig.json",
|
|
"compilerOptions": {
|
|
"outDir": "dist",
|
|
"types": ["node", "jest"],
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
// TODO: remove all options below this line
|
|
"strict": false,
|
|
"noUnusedLocals": false,
|
|
"useUnknownInCatchVariables": false
|
|
},
|
|
"include": ["**/*.d.ts", "commands/**/*", "config/**/*", "src/**/*"]
|
|
}
|