super-productivity/packages/plugin-api/tsconfig.json
Johannes Millan cc98d63c4e feat(plugin-api): publish TypeScript definitions package to npm
- Published @super-productivity/plugin-api v1.0.1 to npm
- Configure package as types-only (no JavaScript output)
- Add emitDeclarationOnly to tsconfig.json
- Update package.json to only include .d.ts files
- Add plugin development link to README contributing section
- Package now provides complete TypeScript definitions for plugin developers
2025-06-29 15:32:51 +02:00

20 lines
493 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2020", "DOM"],
"declaration": true,
"emitDeclarationOnly": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"noEmitOnError": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist"]
}