1
0
Fork 0
js-utils/src/app.ts

11 lines
368 B
TypeScript
Raw Normal View History

2019-09-29 21:06:03 +00:00
/* tslint:disable:no-default-import */
import JSON_DATA from './resource/json.json';
import YAML_DATA from './resource/yaml.yml';
2019-09-29 21:06:03 +00:00
import { VERSION_INFO } from './version';
export async function main(argv: Array<string>): Promise<number> {
// tslint:disable-next-line:no-console
console.log('Hello World!', VERSION_INFO, JSON_DATA, YAML_DATA, argv);
return 1;
}