mirror of
https://github.com/n8n-io/n8n.git
synced 2026-07-28 19:45:09 +02:00
23 lines
743 B
JSON
23 lines
743 B
JSON
{
|
|
"extends": [
|
|
"@n8n/typescript-config/tsconfig.common.go.json",
|
|
"@n8n/typescript-config/tsconfig.backend.go.json"
|
|
],
|
|
"compilerOptions": {
|
|
"paths": {
|
|
"src/*": ["./src/*"],
|
|
"src": ["./src"],
|
|
// Type-only deep import of a type LangChain doesn't re-export publicly.
|
|
// exports-map-aware resolution can't reach dist/, so map straight to the
|
|
// declaration file (erased at runtime — never resolved by Node).
|
|
"@langchain/core/dist/load/map_keys": [
|
|
"./node_modules/@langchain/core/dist/load/map_keys.d.cts"
|
|
]
|
|
},
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"types": ["node", "vitest/globals", "vite/client"]
|
|
},
|
|
"include": ["src/**/*.ts", "test/**/*.ts", "integration-tests/**/*.ts"]
|
|
}
|