mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 06:34:05 -08:00
027dfb2f0a
* ⚡ Enable `esModuleInterop` for /core * ⚡ Adjust imports in /core * ⚡ Enable `esModuleInterop` for /cli * ⚡ Adjust imports in /cli * ⚡ Enable `esModuleInterop` for /nodes-base * ⚡ Adjust imports in /nodes-base * ⚡ Make imports consistent * ⬆️ Upgrade TypeScript to 4.6 (#3109) * ⬆️ Upgrade TypeScript to 4.6 * 📦 Update package-lock.json * 🔧 Avoid erroring on untyped errors * 📘 Fix type error Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
35 lines
568 B
JSON
35 lines
568 B
JSON
{
|
|
"compilerOptions": {
|
|
"lib": [
|
|
"dom",
|
|
"es2019"
|
|
],
|
|
"types": [
|
|
"node",
|
|
"jest"
|
|
],
|
|
"module": "commonjs",
|
|
"removeComments": true,
|
|
"strict": true,
|
|
"preserveConstEnums": true,
|
|
"resolveJsonModule": true,
|
|
"declaration": true,
|
|
"outDir": "./dist/",
|
|
"target": "es2019",
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"useUnknownInCatchVariables": false,
|
|
},
|
|
"include": [
|
|
"credentials/**/*",
|
|
"src/**/*",
|
|
"nodes/**/*",
|
|
"nodes/**/*.json",
|
|
"credentials/translations/**/*.json",
|
|
"test/**/*"
|
|
],
|
|
"exclude": [
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|