Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
@types/node
: v20.17.6next
: 15.0.2react
react-dom
: 19.0.0-rc-02c0e824-20241028eslint-config-next
: 15.0.2next.config.js
rename to.ts
compilerOptions.target
toES2017
nuqs
: 2.1.1<NuqsAdapter>
in root layoutsass
: 1.80.6stylelint
: 16.10.0typescript
: 5.6.3Silence sass warnings 31124c9
Next.js 15 にすると大量の warning が出る。
それを黙らすために
silenceDeprecations
に'legacy-js-api'
を追加。また、現状 bootstrap は新たに非推奨になったSassのグローバル関数などに対応できておらず以下のような warning が出る。
すべて黙らすためには
silenceDeprecations
に'mixed-decls', 'color-functions', 'global-builtin', 'import'
を指定すれば良いが、quietDeps: true
でライブラリのお気持ち表明だけを黙らせることができるためそれを使用。ただ bootstrap を使うために
@import
だけは必要なためそれを残す形に。