mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-29 06:22:24 -05:00
30 lines
689 B
JSON
30 lines
689 B
JSON
{
|
|
"compilerOptions": {
|
|
"strict": true,
|
|
"module": "commonjs",
|
|
"moduleResolution": "node",
|
|
"target": "ES2020",
|
|
"lib": ["es2019", "es2020", "DOM","es2022.error"],
|
|
"removeComments": true,
|
|
"useUnknownInCatchVariables": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noImplicitAny": true,
|
|
"noImplicitReturns": true,
|
|
"noUnusedLocals": true,
|
|
"strictNullChecks": true,
|
|
"preserveConstEnums": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"incremental": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "./dist/",
|
|
},
|
|
"include": [
|
|
"credentials/**/*",
|
|
"nodes/**/*",
|
|
"nodes/**/*.json",
|
|
"package.json",
|
|
],
|
|
}
|