(webRoot: string)
| 929 | }; |
| 930 | |
| 931 | export function defaultSourceMapPathOverrides(webRoot: string): { [key: string]: string } { |
| 932 | return { |
| 933 | 'webpack://?:*/*': `${webRoot}/*`, |
| 934 | 'webpack:///./~/*': `${webRoot}/node_modules/*`, |
| 935 | 'meteor://💻app/*': `${webRoot}/*`, |
| 936 | }; |
| 937 | } |
| 938 | |
| 939 | export function applyNodeDefaults(config: ResolvingNodeConfiguration): AnyNodeConfiguration { |
| 940 | const filled = |
no outgoing calls
no test coverage detected