mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 01:26:44 +00:00
21 lines
539 B
JSON
21 lines
539 B
JSON
{
|
|
"extends": "@n8n/typescript-config/tsconfig.frontend.json",
|
|
"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"]
|
|
}
|