feat: cache the component library and allow declaration movement (#51909)

Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
pull/51914/head^2
Muhammed Mustafa 2023-10-12 18:01:41 +03:00 committed by GitHub
parent b4ba70b4ab
commit 3c10e16984
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 3 deletions

View File

@ -10,5 +10,5 @@ shared/config/superblocks.js
web/**
docs/**/*.md
tools/ui-components/dist/**
playwright.config.ts
tools/ui-components/types/**
playwright.config.ts

View File

@ -1,2 +1,2 @@
types/
dist/
dist/

View File

@ -10,7 +10,9 @@
"strict": true,
"emitDeclarationOnly": true,
"declaration": true,
"declarationDir": "types"
"declarationDir": "types",
// can be removed, when we move the components into its own repo.
"declarationMap": true
},
"exclude": ["node_modules", "dist", "types"],
"ts-node": {