
Security News
Socket Releases Free Certified Patches for Critical vm2 Sandbox Escape
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.
@nexim/typescript-config
Advanced tools
This package provides pre-configured settings for using TypeScript in Nexim projects.
Install the package as a development dependency:
yarn add -D @nexim/typescript-config
To use this configuration, create a tsconfig.json file in the root of your project and extend one of the provided configurations:
tsconfig.base.json)This configuration contains the fundamental settings shared by all other configurations. It's generally not used directly, but serves as the foundation for other, more specific configurations.
tsconfig.browser.app.json)Use this configuration for browser-based applications. It extends the base configuration and is primarily used for type checking during development. It doesn't produce build outputs.
{
"extends": "@nexim/typescript-config/tsconfig.browser.app.json",
"include": ["src/**/*.ts", "src/*.ts"] // Include all TypeScript files in your source directory
}
tsconfig.browser.lib.json)Use this configuration for browser-based libraries. extends the base configuration, generates declaration files (*.d.ts), and supports referencing other projects.
{
"extends": "@nexim/typescript-config/tsconfig.browser.lib.json",
"include": ["src/**/*.ts", "src/*.ts"] // Include all TypeScript files in your source directory
}
tsconfig.node.app.json)Use this configuration for nodejs-based applications. It extends the base configuration and includes Node.js specific type definitions. It doesn't produce build outputs and primarily used for type checking during development.
{
"extends": "@nexim/typescript-config/tsconfig.node.app.json",
"include": ["src/**/*.ts", "src/*.ts"] // Include all TypeScript files in your source directory
}
tsconfig.node.lib.json)Use this configuration for nodejs-based libraries. extends the base configuration, incorporates Node.js type definitions, generates declaration files (*.d.ts), and supports referencing other projects.
{
"extends": "@nexim/typescript-config/tsconfig.node.lib.json",
"include": ["src/**/*.ts", "src/*.ts"] // Include all TypeScript files in your source directory
}
FAQs
Base TypeScript configuration for Nexim projects.
The npm package @nexim/typescript-config receives a total of 14 weekly downloads. As such, @nexim/typescript-config popularity was classified as not popular.
We found that @nexim/typescript-config 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
A critical vm2 sandbox escape can allow untrusted JavaScript to break isolation and execute commands on the host Node.js process.

Research
Five malicious NuGet packages impersonate Chinese .NET libraries to deploy a stealer targeting browser credentials, crypto wallets, SSH keys, and local files.

Security News
pnpm 11 turns on a 1-day Minimum Release Age and blocks exotic subdeps by default, adding safeguards against fast-moving supply chain attacks.