diff --git a/components.json b/components.json index 906c7a1..9307fca 100644 --- a/components.json +++ b/components.json @@ -3,13 +3,11 @@ "style": "default", "typescript": true, "tailwind": { - "config": "", "css": "src/style.css", "baseColor": "neutral", "cssVariables": true, "prefix": "" }, - "framework": "vite", "aliases": { "components": "@/components", "composables": "@/composables", diff --git a/tsconfig.app.json b/tsconfig.app.json index 9328499..6e90efc 100644 --- a/tsconfig.app.json +++ b/tsconfig.app.json @@ -4,6 +4,7 @@ "exclude": ["src/**/__tests__/*"], "compilerOptions": { "tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo", + "baseUrl": ".", "paths": { "@/*": ["./src/*"] } diff --git a/tsconfig.json b/tsconfig.json index 1aaa791..d3bc091 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,4 +1,10 @@ { "files": [], - "references": [{ "path": "./tsconfig.node.json" }, { "path": "./tsconfig.app.json" }] + "references": [{ "path": "./tsconfig.node.json" }, { "path": "./tsconfig.app.json" }], + "compilerOptions": { + "baseUrl": ".", + "paths": { + "@/*": ["./src/*"] + } + } }