File tree Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Expand file tree Collapse file tree 2 files changed +31
-1
lines changed Original file line number Diff line number Diff line change 1+ {
2+ "extends" : " @vue/tsconfig/tsconfig.dom.json" ,
3+ "compilerOptions" : {
4+ "target" : " esnext" ,
5+ "lib" : [" esnext" , " dom" ],
6+ "baseUrl" : " ." ,
7+ "module" : " esnext" ,
8+ "moduleResolution" : " node" ,
9+ "paths" : {
10+ "@/*" : [" src/*" ]
11+ },
12+ "strict" : true ,
13+ "declaration" : false ,
14+ "outDir" : " dist" ,
15+ "esModuleInterop" : true ,
16+ "skipLibCheck" : true
17+ },
18+ "include" : [
19+ " env.d.ts" ,
20+ " src/**/*" ,
21+ " src/**/*.ts" ,
22+ " src/**/*.vue"
23+ ],
24+ "exclude" : [
25+ " src/**/*.test.ts"
26+ ]
27+ }
Original file line number Diff line number Diff line change @@ -12,7 +12,10 @@ export default defineConfig({
1212 plugins : [
1313 vue ( ) ,
1414 vueDevtools ( ) ,
15- dts ( ) ,
15+ dts ( {
16+ tsconfigPath : "tsconfig.build.json" ,
17+ cleanVueFileName : true ,
18+ } ) ,
1619 ] ,
1720
1821 resolve : {
You can’t perform that action at this time.
0 commit comments