
Security News
Create React App Officially Deprecated Amid React 19 Compatibility Issues
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
@reallyland/tsconfig
Advanced tools
TypeScript configuration file for The Really Project
TypeScript configuration file for The Really Project, works for either browser or Node.js.
# Install via NPM
$ npm install --save @reallyland/tsconfig
Note that the following fields are required after extending the sharable tsconfig
:
compilerOptions.rootDir
compilerOptions.outDir
compilerOptions.declarationDir
include
exclude
tsconfig.json
{
"extends": "@reallyland/tsconfig",
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
"declarationDir": "dist"
},
"include": ["src/**/*.ts"],
"exclude": ["dist"]
}
[Optional] tsconfig.prod.json
{
"extends": "@reallyland/tsconfig",
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
"declarationDir": "dist"
},
"include": ["src/*.ts"],
"exclude": ["src/test/**/*.ts", "src/demo/**/*.ts"]
}
Main difference is that there are dom
and dom.iterable
are added in the lib
field of /browser/tsconfig.json
to provide typings for web platform APIs.
tsconfig.json
{
"extends": "@reallyland/tsconfig/browser",
"compilerOptions": {
"rootDir": "src",
"outDir": "dist",
"declarationDir": "dist"
},
"include": ["src/**/*.ts"],
"exclude": ["dist"]
}
MIT License © Rong Sen Ng (motss)
FAQs
TypeScript configuration file for The Really Project
The npm package @reallyland/tsconfig receives a total of 2,944 weekly downloads. As such, @reallyland/tsconfig popularity was classified as popular.
We found that @reallyland/tsconfig demonstrated a not healthy version release cadence and project activity because the last version was released 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
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.