mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 01:56:46 +00:00
15 lines
371 B
JSON
15 lines
371 B
JSON
{
|
|
"extends": "@n8n/typescript-config/tsconfig.frontend.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"outDir": "dist",
|
|
"useUnknownInCatchVariables": false,
|
|
"types": ["vite/client", "vitest/globals"],
|
|
"isolatedModules": true,
|
|
"paths": {
|
|
"@n8n/utils/*": ["../../../@n8n/utils/src/*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "vite.config.ts", "tsup.config.ts"]
|
|
}
|