
Security News
Vite+ Joins the Push to Consolidate JavaScript Tooling
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
@realbase/tsconfig
Advanced tools
RealBase 모노레포에서 공통으로 사용하는 TypeScript 설정 패키지입니다. 각 앱/패키지는 이 설정을 확장해 일관된 컴파일 옵션을 적용합니다.
pnpm add -D @realbase/tsconfig
프로젝트의 tsconfig.json
에서 확장하세요.
{
"extends": "@realbase/tsconfig/base.json",
"compilerOptions": {
"baseUrl": ".",
"paths": { "@/*": ["src/*"] }
},
"include": ["src", "next-env.d.ts"]
}
base.json
: RealBase 기본 TS 옵션noEmit: true
(트랜스파일은 Next.js 등 번들러가 담당)strictNullChecks
, noUncheckedIndexedAccess
incremental
, tsBuildInfoFile
등라이브러리에서 타입 선언만 배포해야 할 때:
{
"extends": "@realbase/tsconfig/base.json",
"compilerOptions": {
"noEmit": false,
"declaration": true,
"emitDeclarationOnly": true
}
}
MIT Licensed.
FAQs
A TypeScript configuration package for Realbase projects.
The npm package @realbase/tsconfig receives a total of 2 weekly downloads. As such, @realbase/tsconfig popularity was classified as not popular.
We found that @realbase/tsconfig demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Evan You announces Vite+, a commercial, Rust-powered toolchain built on the Vite ecosystem to unify JavaScript development and fund open source.
Security News
Ruby Central’s incident report on the RubyGems.org access dispute sparks backlash from former maintainers and renewed debate over project governance.
Research
/Security News
Socket researchers uncover how threat actors weaponize Discord across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.