mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Change 'export default' to 'export =' For packages that don't actually export a 'default' property. * 7 more packages
16 lines
323 B
TypeScript
16 lines
323 B
TypeScript
import sourcemaps = require('rollup-plugin-sourcemaps');
|
|
import * as fs from 'fs';
|
|
|
|
// $ExpectType Plugin
|
|
sourcemaps();
|
|
|
|
// $ExpectType Plugin
|
|
sourcemaps({});
|
|
|
|
// $ExpectType Plugin
|
|
sourcemaps({
|
|
include: 'node_modules/**',
|
|
exclude: [ 'node_modules/foo/**', 'node_modules/bar/**' ],
|
|
readFile: fs.readFile
|
|
});
|