mirror of
https://github.com/n8n-io/n8n
synced 2026-04-21 15:47:20 +00:00
20 lines
471 B
JSON
20 lines
471 B
JSON
{
|
|
"compilerOptions": {
|
|
"ignoreDeprecations": "6.0",
|
|
"target": "ES2015",
|
|
"module": "ESNext",
|
|
"moduleResolution": "node",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"strict": false,
|
|
"outDir": "dist",
|
|
"rootDir": "src",
|
|
"declaration": true,
|
|
"declarationMap": true,
|
|
"downlevelIteration": true,
|
|
"skipLibCheck": true,
|
|
"types": ["node", "jest"]
|
|
},
|
|
"include": ["src/**/*"],
|
|
"exclude": ["dist", "node_modules", "**/*.test.ts"]
|
|
}
|