-
-
Notifications
You must be signed in to change notification settings - Fork 32.6k
[infra] WIP - use .mjs extension instead of nested package.json #46500
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: master
Are you sure you want to change the base?
Changes from all commits
cdbe226
04009be
9eeb7cf
903e9c2
05b3896
bbb68db
6278f26
d3bf474
b13db8d
a1eaa8f
687b783
9833048
dadb879
721baf4
81bcffd
6c9ef5c
bdd2339
6946662
bd7da36
bda8c15
af234da
a707491
ff4703e
0a1306a
2687d58
b59579a
199d1b7
244cf97
52f26d1
9b3eed2
f90ba78
69b8201
6cf48a7
26c1b16
337128a
37a374a
ff3cb8e
3addf18
be42b3e
ab4ab56
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 |
---|---|---|
|
@@ -189,6 +189,8 @@ | |
"prettier": "^3.6.2", | ||
"pretty-quick": "^4.2.2", | ||
"process": "^0.11.10", | ||
"regexp.escape": "^2.0.1", | ||
"resolve-pkg-maps": "^1.0.0", | ||
"rimraf": "^6.0.1", | ||
"serve": "^14.2.4", | ||
"stylelint": "^16.22.0", | ||
|
@@ -209,6 +211,15 @@ | |
"engines": { | ||
"pnpm": "10.13.1" | ||
}, | ||
"pnpm": { | ||
"packageExtensions": { | ||
"@pigment-css/react": { | ||
"peerDependencies": { | ||
"@mui/types": "7" | ||
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. Missing peer dependency in pigment |
||
} | ||
} | ||
} | ||
}, | ||
"resolutions": { | ||
"@babel/core": "^7.28.0", | ||
"@babel/plugin-transform-runtime": "^7.28.0", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
// Actual .ts source files are transpiled via babel | ||
"extends": "./tsconfig.json", | ||
"compilerOptions": { | ||
"composite": true, | ||
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. What does removing this do ? 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. Makes it a standalone project, without project references. We're not building with |
||
"paths": {}, | ||
"declaration": true, | ||
"noEmit": false, | ||
"emitDeclarationOnly": true, | ||
|
Uh oh!
There was an error while loading. Please reload this page.
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.
Getting rid of this. It does exactly nothing as far as I can see. Have enquired about this before and never received any comment on this doing something useful.