mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
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/**/*"]
|
||
|
}
|