n8n/packages/design-system/tsconfig.json
Alex Grozav ef87da4c19
feat: Add reusable frontend composables package (#13077)
Co-authored-by: कारतोफ्फेलस्क्रिप्ट™ <netroy@users.noreply.github.com>
2025-02-06 12:44:30 +02:00

21 lines
525 B
JSON

{
"extends": "@n8n/frontend-typescript-config",
"compilerOptions": {
"baseUrl": ".",
"rootDirs": [".", "../../frontend/@n8n/composables/src"],
"outDir": "dist",
"types": ["vite/client", "vitest/globals"],
"typeRoots": [
"./node_modules/@testing-library",
"./node_modules/@types",
"../../node_modules",
"../../node_modules/@types"
],
"paths": {
"n8n-design-system*": ["./src*"],
"@n8n/composables*": ["../frontend/@n8n/composables/src*"]
}
},
"include": ["src/**/*.ts", "src/**/*.vue"]
}