mirror of
https://github.com/ezolenko/rollup-plugin-typescript2.git
synced 2025-12-08 19:06:16 +00:00
- fix for .d.ts.map extension #97
This commit is contained in:
parent
433c8fad6b
commit
a345bbc11a
2
dist/rollup-plugin-typescript2.cjs.js
vendored
2
dist/rollup-plugin-typescript2.cjs.js
vendored
@ -20191,7 +20191,7 @@ function typescript(options) {
|
||||
};
|
||||
lodash_2(declarations, ({ type, map }, key) => {
|
||||
writeDeclaration(key, ".d.ts", type);
|
||||
writeDeclaration(key, ".map.d.ts", map);
|
||||
writeDeclaration(key, ".d.ts.map", map);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
2
dist/rollup-plugin-typescript2.cjs.js.map
vendored
2
dist/rollup-plugin-typescript2.cjs.js.map
vendored
File diff suppressed because one or more lines are too long
2
dist/rollup-plugin-typescript2.es.js
vendored
2
dist/rollup-plugin-typescript2.es.js
vendored
@ -20187,7 +20187,7 @@ function typescript(options) {
|
||||
};
|
||||
lodash_2(declarations, ({ type, map }, key) => {
|
||||
writeDeclaration(key, ".d.ts", type);
|
||||
writeDeclaration(key, ".map.d.ts", map);
|
||||
writeDeclaration(key, ".d.ts.map", map);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
2
dist/rollup-plugin-typescript2.es.js.map
vendored
2
dist/rollup-plugin-typescript2.es.js.map
vendored
File diff suppressed because one or more lines are too long
@ -339,7 +339,7 @@ export default function typescript(options?: Partial<IOptions>)
|
||||
_.each(declarations, ({ type, map }, key) =>
|
||||
{
|
||||
writeDeclaration(key, ".d.ts", type);
|
||||
writeDeclaration(key, ".map.d.ts", map);
|
||||
writeDeclaration(key, ".d.ts.map", map);
|
||||
});
|
||||
}
|
||||
},
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user