We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5ffea9a commit dd4a66cCopy full SHA for dd4a66c
test-files/input.vue
@@ -31,7 +31,7 @@ console.log("This is the non-setup script");
31
import MyComponent from "MyComponent.vue";
32
import { someConst, otherConst } from "some-module";
33
import type { AssetURLOptions } from "@vue/compiler-sfc";
34
-import { type Props } from "./types";
+import { type Props } from "@/types";
35
36
const props = withDefaults(
37
defineProps<
test-files/tsconfig.json
@@ -0,0 +1,11 @@
1
+{
2
+ "compilerOptions": {
3
+ "baseUrl": ".",
4
+ "paths": {
5
+ "@/*": ["./*"]
6
+ },
7
+ "sourceMap": true
8
9
+ "include": ["**/*.vue", "**/*.ts"],
10
+
11
+}
0 commit comments