vue3-core/packages-private/dts-test
edison 05685a9d7c
fix(types): retain union type narrowing with defaults applied (#12108)
close #12106
2024-10-11 11:17:48 +08:00
..
README.md workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
appDirective.test-d.ts types: improve app.directive type generics (#11926) 2024-09-16 10:30:04 +08:00
appUse.test-d.ts workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
built.test-d.ts workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
compiler.test-d.ts workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
component.test-d.ts workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
componentInstance.test-d.tsx workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
componentTypeExtensions.test-d.tsx workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
defineComponent.test-d.tsx fix(types): ensure `this.$props` type does not include `string` (#12123) 2024-10-11 10:30:09 +08:00
defineCustomElement.test-d.ts fix(types/custom-element): `defineCustomElement` with required props (#11578) 2024-08-16 16:22:03 +08:00
directives.test-d.ts workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
extractProps.test-d.ts workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
functionalComponent.test-d.tsx workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
h.test-d.ts workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
inject.test-d.ts workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
package.json workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
reactivity.test-d.ts workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
ref.test-d.ts fix(types/ref): handle nested refs in UnwrapRef (#12049) 2024-09-27 10:23:01 +08:00
setupHelpers.test-d.ts fix(types): retain union type narrowing with defaults applied (#12108) 2024-10-11 11:17:48 +08:00
tsconfig.test.json workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
tsx.test-d.tsx fix(types): added name attribute support to details tag (#11823) 2024-09-05 17:53:05 +08:00
utils.d.ts workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
watch.test-d.ts workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00

README.md

dts-test

Tests TypeScript types to ensure the types remain as expected.

  • This directory is included in the root tsconfig.json, where package imports are aliased to src directories, so in IDEs and the pnpm check script the types are validated against source code.

  • When running tsc with packages-private/dts-test/tsconfig.test.json, packages are resolved using normal node resolution, so the types are validated against actual built types. This requires the types to be built first via pnpm build-dts.