UNPKG

@rushstack/node-core-library

Version:

Core libraries that every NodeJS toolchain project should use

27 lines 646 B
/** * String constants for common filenames and parts of filenames. * * @public */ export declare const FileConstants: { /** * "package.json" - the configuration file that defines an NPM package */ readonly PackageJson: "package.json"; }; /** * String constants for common folder names. * * @public */ export declare const FolderConstants: { /** * ".git" - the data storage for a Git working folder */ readonly Git: ".git"; /** * "node_modules" - the folder where package managers install their files */ readonly NodeModules: "node_modules"; }; //# sourceMappingURL=Constants.d.ts.map