diff --git a/src/App.vue b/src/App.vue
index 4765f9f..5d4ed33 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,6 +1,11 @@
diff --git a/src/utils/index.ts b/src/utils/index.ts
new file mode 100644
index 0000000..85b7525
--- /dev/null
+++ b/src/utils/index.ts
@@ -0,0 +1,3 @@
+export function hello(){
+ return 'Hello'
+}
diff --git a/tsconfig.json b/tsconfig.json
index bcc4abd..79b19e4 100644
--- a/tsconfig.json
+++ b/tsconfig.json
@@ -11,7 +11,13 @@
"isolatedModules": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
- "skipLibCheck": true
+ "skipLibCheck": true,
+ "baseUrl": ".",
+ "paths": {
+ "@/*": [
+ "./src/*"
+ ],
+ }
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]
diff --git a/vite.config.ts b/vite.config.ts
index 215d075..bc888ca 100644
--- a/vite.config.ts
+++ b/vite.config.ts
@@ -1,3 +1,4 @@
+// @ts-nocheck
import { defineConfig } from "vite";
import vue from "@vitejs/plugin-vue";
import path from "path";