mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
22 lines
597 B
JSON
22 lines
597 B
JSON
{
|
|
"extends": "@n8n/typescript-config/tsconfig.frontend.json",
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"rootDirs": [".", "../composables/src"],
|
|
"outDir": "dist",
|
|
"types": ["vite/client", "unplugin-icons/types/vue", "vitest/globals"],
|
|
"typeRoots": [
|
|
"./node_modules/@testing-library",
|
|
"./node_modules/@types",
|
|
"../../../../node_modules",
|
|
"../../../../node_modules/@types"
|
|
],
|
|
"paths": {
|
|
"@n8n/design-system*": ["./src*"],
|
|
"@n8n/composables*": ["../composables/src*"],
|
|
"@n8n/utils*": ["../../../@n8n/utils/src*"]
|
|
}
|
|
},
|
|
"include": ["src/**/*.ts", "src/**/*.vue"]
|
|
}
|