Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import { ApplicationPresetOptions, I18nPluginCreators } from './presets/applicat
interface AngularCustomOptions extends Omit<ApplicationPresetOptions, 'instrumentCode'> {
instrumentCode?: {
/** node_modules and test files are always excluded. */
excludedPaths: Set<String>;
excludedPaths: Set<string>;
includedBasePath: string;
};
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as path from 'path';
import { AssetPattern, AssetPatternClass } from '../builders/browser/schema';

export class MissingAssetSourceRootException extends BaseException {
constructor(path: String) {
constructor(path: string) {
super(`The ${path} asset path must start with the project source root.`);
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as path from 'path';
import { FileReplacement } from '../builders/browser/schema';

export class MissingFileReplacementException extends BaseException {
constructor(path: String) {
constructor(path: string) {
super(`The ${path} path in file replacements does not exist.`);
}
}
Expand Down