├── .gitignore ├── babel.config.json ├── package.json ├── src ├── employee.ts ├── enum.ts ├── person.ts ├── say-hello.ts ├── seller.ts └── type-alias.ts ├── tests ├── any.test.ts ├── array.test.ts ├── enum.test.ts ├── function.test.ts ├── hello.test.ts ├── if.test.ts ├── interface.test.ts ├── loop.test.ts ├── object.test.ts ├── optional.test.ts ├── say-hello.test.ts ├── tipe-data.test.ts ├── type-alias.test.ts └── union.test.ts └── tsconfig.json /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | node_modules 3 | dist 4 | -------------------------------------------------------------------------------- /babel.config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/babel.config.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/package.json -------------------------------------------------------------------------------- /src/employee.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/src/employee.ts -------------------------------------------------------------------------------- /src/enum.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/src/enum.ts -------------------------------------------------------------------------------- /src/person.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/src/person.ts -------------------------------------------------------------------------------- /src/say-hello.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/src/say-hello.ts -------------------------------------------------------------------------------- /src/seller.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/src/seller.ts -------------------------------------------------------------------------------- /src/type-alias.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/src/type-alias.ts -------------------------------------------------------------------------------- /tests/any.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/any.test.ts -------------------------------------------------------------------------------- /tests/array.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/array.test.ts -------------------------------------------------------------------------------- /tests/enum.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/enum.test.ts -------------------------------------------------------------------------------- /tests/function.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/function.test.ts -------------------------------------------------------------------------------- /tests/hello.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/hello.test.ts -------------------------------------------------------------------------------- /tests/if.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/if.test.ts -------------------------------------------------------------------------------- /tests/interface.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/interface.test.ts -------------------------------------------------------------------------------- /tests/loop.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/loop.test.ts -------------------------------------------------------------------------------- /tests/object.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/object.test.ts -------------------------------------------------------------------------------- /tests/optional.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/optional.test.ts -------------------------------------------------------------------------------- /tests/say-hello.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/say-hello.test.ts -------------------------------------------------------------------------------- /tests/tipe-data.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/tipe-data.test.ts -------------------------------------------------------------------------------- /tests/type-alias.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/type-alias.test.ts -------------------------------------------------------------------------------- /tests/union.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tests/union.test.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProgrammerZamanNow/belajar-typescript-dasar/HEAD/tsconfig.json --------------------------------------------------------------------------------