{"library":"rollup-plugin-tsc","title":"rollup-plugin-tsc","description":"Zero-config Rollup plugin for TypeScript transpilation using the official tsc compiler (not Babel). Version 1.1.16 is current, with infrequent releases. Simple setup by passing a tsconfig object directly; no separate tsconfig.json required. Lightweight alternative to @rollup/plugin-typescript, offering more control over compiler options but less ecosystem integration.","language":"javascript","status":"active","last_verified":"Mon Apr 27","install":{"commands":["npm install rollup-plugin-tsc"],"cli":null},"imports":["import tsc from 'rollup-plugin-tsc'","import tsc from 'rollup-plugin-tsc'"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"// rollup.config.js\nimport tsc from 'rollup-plugin-tsc';\n\nexport default {\n  input: 'src/main.ts',\n  output: { file: 'dist/main.js', format: 'cjs' },\n  plugins: [\n    tsc({\n      compilerOptions: {\n        target: 'es2019',\n        module: 'esnext',\n        strict: true,\n        esModuleInterop: true\n      },\n    }),\n  ],\n};","lang":"javascript","description":"Minimal Rollup config with rollup-plugin-tsc transpiling TypeScript using inline tsconfig.","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}