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 03afa2b commit aa8e4b5Copy full SHA for aa8e4b5
tsconfig.json
@@ -1,14 +1,18 @@
1
{
2
"$schema": "https://json.schemastore.org/tsconfig",
3
+ "include": ["src/**/*.ts", "src/**/*.vue"],
4
+ "tsc-alias": { "resolveFullPaths": true },
5
+ "vueCompilerOptions": { "plugins": ["@vue/language-plugin-pug"] },
6
"extends": [
7
"@vue/tsconfig/tsconfig",
8
+ "@vue/tsconfig/tsconfig.dom",
9
"@vue/tsconfig/tsconfig.lib",
10
"@tsconfig/strictest/tsconfig"
11
],
12
"compilerOptions": {
13
"emitDeclarationOnly": false,
14
"allowImportingTsExtensions": false,
- "outDir": "dist"
- },
- "include": ["src/**/*.ts"]
15
+ "outDir": "dist",
16
+ "paths": { "@/*": ["./src/*"] }
17
+ }
18
}
0 commit comments