-
-
Couldn't load subscription status.
- Fork 32
chore: add lint:unused script to run Knip #241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: main
Are you sure you want to change the base?
Changes from 2 commits
c64b8b9
92424a2
04af85b
d140619
cb017d9
25a973b
57f8101
bda0a5d
8cb1ee9
d10bd58
d4bfef3
042aead
579b5ab
bec181a
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,30 @@ | ||
| { | ||
| "workspaces": { | ||
| ".": { | ||
| "entry": ["scripts/*.js", "tools/*.js", ".github/workflows/*.yml"] | ||
| }, | ||
| "packages/migrate-config": { | ||
| "entry": ["src/migrate-config.js", "tests/**/*.{js,ts}"], | ||
| "project": ["src/**/*.{js,ts}", "tests/*.{js,ts}"] | ||
| }, | ||
| "packages/config-array": { | ||
| "entry": ["tests/**/*.{js,ts}", "rollup.std__path-config.js"], | ||
| "project": ["src/**/*.{js,ts}", "tests/**/*.{js,ts}"] | ||
| }, | ||
| "packages/plugin-kit": { | ||
| "entry": ["tests/**/*.{js,ts}"], | ||
| "project": ["src/**/*.{js,ts}", "tests/**/*.{js,ts}"] | ||
JoshuaKGoldberg marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| }, | ||
| "packages/compat": { | ||
| "entry": ["tests/**/*.{js,ts}"], | ||
| "project": ["src/**/*.{js,ts}", "tests/*.{js,ts}"] | ||
| }, | ||
| "packages/object-schema": { | ||
| "entry": ["tests/**/*.{js,ts}", "src/types.ts"], | ||
| "project": ["src/**/*.{js,ts}", "tests/**/*.{js,ts}"] | ||
| }, | ||
| "packages/core": { | ||
| "project": ["src/**/*.{js,ts}"] | ||
| } | ||
| } | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,6 +2,7 @@ | |
| "extends": "../../tsconfig.base.json", | ||
| "files": ["src/index.js"], | ||
| "compilerOptions": { | ||
| "outDir": "dist/esm" | ||
| "outDir": "dist/esm", | ||
| "types": ["mocha", "@eslint/core"] | ||
JoshuaKGoldberg marked this conversation as resolved.
Outdated
Show resolved
Hide resolved
|
||
| } | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Given these packages are all using mocha, I was wondering if we could move it to |
||
| } | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It seems that everywhere else uses
jsr@latest, only this one doesn't have@latest. 🤔