mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
c1bcc47cb5
* fix: Fix inferred type of X cannot be named error after pnpm update * preserve symlinks for `cli` Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <aditya@netroy.in>
25 lines
616 B
JSON
25 lines
616 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "es2019",
|
|
"lib": ["es2019", "es2020", "es2022.error"],
|
|
"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,
|
|
"skipLibCheck": true
|
|
},
|
|
"exclude": ["**/dist/**/*", "**/node_modules/**/*"]
|
|
}
|