vue3-core/packages-private/dts-test
Rudy d6ccce9049
test(types): component type check when props is an empty object (#7419)
ref #4051
ref #8825
2024-08-28 17:48:10 +08:00
..
README.md workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
appDirective.test-d.ts workflow: move private packages to separate directory 2024-08-12 08:02:03 +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 test(types): component type check when props is an empty object (#7419) 2024-08-28 17:48:10 +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/computed): ensure type safety for `WritableComputedRef` (#11608) 2024-08-14 15:11:10 +08:00
setupHelpers.test-d.ts fix(types): strip non-prop default values from return type of withDefaults (#9998) 2024-08-19 16:29:43 +08:00
tsconfig.test.json workflow: move private packages to separate directory 2024-08-12 08:02:03 +08:00
tsx.test-d.tsx workflow: move private packages to separate directory 2024-08-12 08:02:03 +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.