forked from WordPress/gutenberg
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Edit Site: Add tsconfig.json validation for package (WordPress#67406)
Add basic tsconfig.json validation for edit-site package Co-authored-by: ramonjd <[email protected]> Co-authored-by: matiasbenedetto <[email protected]> Co-authored-by: ciampo <[email protected]> Co-authored-by: sirreal <[email protected]>
- Loading branch information
1 parent
979c44d
commit a76edf4
Showing
7 changed files
with
119 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
{ | ||
"$schema": "https://json.schemastore.org/tsconfig.json", | ||
"extends": "../../tsconfig.base.json", | ||
"references": [ | ||
{ "path": "../a11y" }, | ||
{ "path": "../api-fetch" }, | ||
{ "path": "../autop" }, | ||
{ "path": "../blob" }, | ||
{ "path": "../block-library" }, | ||
{ "path": "../block-editor" }, | ||
{ "path": "../components" }, | ||
{ "path": "../compose" }, | ||
{ "path": "../core-data" }, | ||
{ "path": "../data" }, | ||
{ "path": "../dataviews" }, | ||
{ "path": "../date" }, | ||
{ "path": "../deprecated" }, | ||
{ "path": "../dom" }, | ||
{ "path": "../editor" }, | ||
{ "path": "../element" }, | ||
{ "path": "../escape-html" }, | ||
{ "path": "../fields" }, | ||
{ "path": "../hooks" }, | ||
{ "path": "../html-entities" }, | ||
{ "path": "../i18n" }, | ||
{ "path": "../icons" }, | ||
{ "path": "../interactivity" }, | ||
{ "path": "../interactivity-router" }, | ||
{ "path": "../media-utils" }, | ||
{ "path": "../notices" }, | ||
{ "path": "../keycodes" }, | ||
{ "path": "../plugins" }, | ||
{ "path": "../primitives" }, | ||
{ "path": "../private-apis" }, | ||
{ "path": "../rich-text" }, | ||
{ "path": "../router" }, | ||
{ "path": "../style-engine" }, | ||
{ "path": "../url" }, | ||
{ "path": "../wordcount" } | ||
], | ||
// NOTE: This package is being progressively typed. You are encouraged to | ||
// expand this array with files which can be type-checked. At some point in | ||
// the future, this can be simplified to an `includes` of `src/**/*`. | ||
"files": [ | ||
"src/components/style-book/categories.ts", | ||
"src/components/style-book/constants.ts", | ||
"src/components/style-book/types.ts", | ||
"src/components/style-book/color-examples.tsx", | ||
"src/components/style-book/duotone-examples.tsx", | ||
"src/components/style-book/examples.tsx" | ||
], | ||
"include": [] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters