Skip to content

Commit

Permalink
Merge pull request #4 from selemondev/chore/lint
Browse files Browse the repository at this point in the history
chore: lint
  • Loading branch information
selemondev authored Jul 2, 2024
2 parents c9961be + f069b3e commit 0186027
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
1 change: 0 additions & 1 deletion pnpm-workspace.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
packages:
- website

11 changes: 6 additions & 5 deletions shim-vue.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
declare module "*.vue" {
import { defineComponent } from "vue";
const component: ReturnType<typeof defineComponent>;
export default component;
}
declare module '*.vue' {
import type { defineComponent } from 'vue'

const component: ReturnType<typeof defineComponent>
export default component
}
2 changes: 1 addition & 1 deletion tsconfig.base.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@
"isolatedModules": true,
"skipLibCheck": true
}
}
}
2 changes: 1 addition & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "env.d.ts"],
"exclude": ["website"]
}
}

0 comments on commit 0186027

Please sign in to comment.