Skip to content

Commit 7395a39

Browse files
committed
chore(cordova-build): remove type cast
1 parent 2a99ac0 commit 7395a39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

builders/cordova-build/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ export class CordovaBuildBuilder implements Builder<CordovaBuildBuilderSchema> {
4848
const cordovaBasePath = normalize(options.cordovaBasePath ? options.cordovaBasePath : '.');
4949

5050
if (typeof options.sourceMap !== 'undefined') {
51-
browserOptions.sourceMap = options.sourceMap as any;
51+
browserOptions.sourceMap = options.sourceMap;
5252
}
5353

5454
// We always need to output the build to `www` because it is a hard

0 commit comments

Comments
 (0)