Skip to content

Commit

Permalink
chore: emitting declarations only from tsc cmd
Browse files Browse the repository at this point in the history
due to issues in rollup plugin rollup/plugins#1230
  • Loading branch information
dominikbulaj committed Aug 3, 2022
1 parent 67efe67 commit aa664ed
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tsconfig.json
@@ -1,6 +1,5 @@
{
"compilerOptions": {
"noEmit": true,
"module": "esnext",
"target": "ES6",
"lib": ["es6", "dom"],
Expand All @@ -16,7 +15,8 @@
"esModuleInterop": true,
"skipLibCheck": true,
"declaration": true,
"declarationDir": "./types"
"declarationDir": "./types",
"emitDeclarationOnly": true
},
"include": ["src"],
"exclude": ["node_modules", "dist", "jest", "**/*.test.ts"]
Expand Down

0 comments on commit aa664ed

Please sign in to comment.