Set up project skeleton for flipper-pkg

Summary: TypeScript cli tool basics.

Reviewed By: jknoxville, nikoant

Differential Revision: D19856513

fbshipit-source-id: da148d1435c09221f74dc94285b655bed53d0494
This commit is contained in:
Pascal Hartig
2020-02-13 09:04:59 -08:00
committed by Facebook Github Bot
parent 00bfa39992
commit 6f15e29b99
7 changed files with 4061 additions and 0 deletions

12
pkg/src/index.ts Normal file
View File

@@ -0,0 +1,12 @@
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*
* @format
*/
(async () => {
console.log('Hello, flipper-pkg.');
})();