
npm run transpile Works on files under js/react/ Outputs files right next to the .tsx file This is part of our `grunt dev` task, as well as the default grunt task, which does everything else necessary to get a raw git checkout ready to run.
7 lines
146 B
TypeScript
7 lines
146 B
TypeScript
import { InlineReply } from './sub/test2';
|
|
|
|
// console.log(InlineReply);
|
|
|
|
export function greeter(person: any) {
|
|
return 'Hello, ' + person;
|
|
}
|