
Security News
PolinRider: North Korea-Linked Supply Chain Campaign Expands Across Open Source Ecosystems
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.
@taylorvance/tv-shared-config
Advanced tools
Shared ESLint, Prettier, and TypeScript config presets for Taylor Vance portfolio projects.
@taylorvance/tv-shared-configShared ESLint, Prettier, and TypeScript config presets for Taylor Vance portfolio projects.
@taylorvance/tv-shared-config/eslint/base@taylorvance/tv-shared-config/eslint/react-app@taylorvance/tv-shared-config/prettier@taylorvance/tv-shared-config/tsconfig/react-app.json@taylorvance/tv-shared-config/tsconfig/vite-node.jsonUse the React preset for Vite + React + TypeScript consumers:
import defineReactAppConfig from '@taylorvance/tv-shared-config/eslint/react-app'
export default defineReactAppConfig()
With consumer-specific ignores:
import defineReactAppConfig from '@taylorvance/tv-shared-config/eslint/react-app'
export default defineReactAppConfig({
ignores: ['public/generated/**'],
})
Use the base preset for non-React tooling packages:
import defineBaseConfig from '@taylorvance/tv-shared-config/eslint/base'
export default defineBaseConfig({
includeBrowserGlobals: false,
})
Use the shared Prettier baseline:
import prettierConfig from '@taylorvance/tv-shared-config/prettier'
export default prettierConfig
Use the React app base for Vite source code:
{
"extends": "@taylorvance/tv-shared-config/tsconfig/react-app.json",
"compilerOptions": {
"types": ["vite/client"]
},
"include": ["src"]
}
Use the Node-side base for Vite config and scripts:
{
"extends": "@taylorvance/tv-shared-config/tsconfig/vite-node.json",
"compilerOptions": {
"composite": true,
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.node.tsbuildinfo"
},
"include": ["vite.config.ts"]
}
FAQs
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
PolinRider expands across npm, Packagist, Go modules, and Chrome extensions, using hidden loaders to target developer environments.

Security News
Open source attacks are accelerating as AI coding agents pull in dependencies faster, with less human review.

Research
/Security News
Malicious Chrome and Firefox extensions posed as free VPNs while stealing clipboard data through later extension updates.