n8n/packages/cli/tsconfig.json

15 lines
381 B
JSON
Raw Normal View History

2019-06-23 03:35:23 -07:00
{
"extends": "../../tsconfig.json",
2019-06-23 03:35:23 -07:00
"compilerOptions": {
"outDir": "dist",
"types": ["node", "jest"],
2019-06-23 03:35:23 -07:00
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
// TODO: remove all options below this line
"strict": false,
"noUnusedLocals": false,
"useUnknownInCatchVariables": false
2019-06-23 03:35:23 -07:00
},
"include": ["**/*.d.ts", "commands/**/*", "config/**/*", "src/**/*"]
2019-06-23 03:35:23 -07:00
}