##// END OF EJS Templates
added properties to the build project...
added properties to the build project flavour=(browser|node) controls the target runtime settings symbols=(none|local|pack) controls how the source maps are generated and sources are packed

File last commit:

r59:ba3ff79c2832 default
r99:7071c0e728fe ts-plugin
Show More
ConfigError.ts
12 lines | 210 B | video/mp2t | TypeScriptLexer
/ src / main / ts / di / ConfigError.ts
cin
changed the project structure
r49 export class ConfigError extends Error {
cin
working on support commonjs modules format
r59 inner: any;
cin
changed the project structure
r49
path: string;
configName: string;
cin
working on support commonjs modules format
r59 constructor(message: string, inner?: any) {
cin
changed the project structure
r49 super(message);
this.inner = inner;
}
}