mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34: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.
24 lines
576 B
JSON
24 lines
576 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2019",
|
|
"lib": ["es2019", "es2020"],
|
|
"removeComments": true,
|
|
"useUnknownInCatchVariables": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"preserveConstEnums": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"incremental": true,
|
|
"declaration": true,
|
|
"sourceMap": true
|
|
},
|
|
"exclude": ["**/dist/**/*", "**/node_modules/**/*"]
|
|
}
|