Skip to content

Commit

Permalink
chore: fix rollup.config.ts types
Browse files Browse the repository at this point in the history
  • Loading branch information
harttle committed Feb 24, 2019
1 parent f34573e commit 75b3e15
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 6 additions & 0 deletions libs.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
declare module 'rollup-plugin-uglify' {
export function uglify (): any
}
declare module 'rollup-plugin-shim' {
export default function shim(options: any): any
}
3 changes: 2 additions & 1 deletion tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
"sourceMap": true,
"declaration": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"strict": true,
"suppressImplicitAnyIndexErrors": true,
"baseUrl": ".",
Expand All @@ -16,6 +17,6 @@
"test/*": ["test/*"]
}
},
"include": [ "*.ts", "src", "test", "benchmark" ],
"all": true,
"exclude": [ "node_modules", "dist" ]
}

0 comments on commit 75b3e15

Please sign in to comment.