
Security News
The Hidden Blast Radius of the Axios Compromise
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.
react-static-pro-plugin-typescript
Advanced tools
A react static pro plugin that adds support for typescript
A plugin for [React Static Pro] that allows you to use TypeScript.
There instructions for enabling this plugin on existing projects below. When setting up a new project using React Static, you can simply select the TypeScript after running react-static-pro-max create.
npm install react-static-pro-plugin-typescript @types/react --save-dev
There are three steps to complete before being able to use this plugin.
First, add the plugin to your static.config.js:
export default {
plugins: ['react-static-pro-plugin-typescript'],
}
Then add a tsconfig.json, e.g. this one:
{
"compilerOptions": {
"target": "es2015",
"module": "esnext",
"lib": ["es2015", "dom"],
"moduleResolution": "node",
"skipLibCheck": true,
"isolatedModules": true,
"noEmit": true,
"allowJs": true,
"jsx": "preserve",
"sourceMap": true,
"removeComments": false,
"strict": true,
"esModuleInterop": true
}
}
Finally, rename a file from .js to .tsx. You can then start using TypeScript!
Options [can be passed by using an array], e.g.:
// In static.config.js:
export default {
plugins: [['react-static-pro-plugin-typescript', { typeCheck: true }]],
}
typeCheck: booleanDefault value: true
Enable or disable type checking for your application during compilation. When this is off, your TypeScript files will still be loaded, but you won't get warnings about type errors unless you set that up separately, e.g. in your editor, a commit hook, or in your CI server. When this is on, your application will fail to run locally when there are type errors.
MIT ©
FAQs
A react static pro plugin that adds support for typescript
We found that react-static-pro-plugin-typescript 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
The Axios compromise shows how time-dependent dependency resolution makes exposure harder to detect and contain.

Research
A supply chain attack on Axios introduced a malicious dependency, plain-crypto-js@4.2.1, published minutes earlier and absent from the project’s GitHub releases.

Research
Malicious versions of the Telnyx Python SDK on PyPI delivered credential-stealing malware via a multi-stage supply chain attack.