UNPKG

694 BPlain TextView Raw
1export namespace Files {
2 // Angular CLI configuration file names
3 export const cli = ['angular-cli.json', '.angular-cli.json'];
4
5 // Filename used when writing route structures to disk (eg foo/index.html)
6 export const index = 'index.html';
7
8 // The possible names of node_modules folders (TODO(bond): Really inviolate or configurable?)
9 export const modules = 'node_modules';
10
11 // The names we will search when we look for project tsconfig.json files
12 export const tsconfig = ['tsconfig.app.json', 'tsconfig.json'];
13
14 // Webpack configuration filenames sorted in precedence order
15 export const webpack = ['webpack.server.config.js', 'webpack.app.config.js', 'webpack.config.js'];
16}