Skip to content

Instantly share code, notes, and snippets.

@Falieson
Last active May 31, 2018 21:30
Show Gist options
  • Save Falieson/fe5c27f10b28ce57f7afb61273dec426 to your computer and use it in GitHub Desktop.
Save Falieson/fe5c27f10b28ce57f7afb61273dec426 to your computer and use it in GitHub Desktop.
S3. F01. List all files in ./dist (ARTICLE: TS-Module w/ Declarations (Part 1/4))
### TS-Module w/ Declarations (Part 1/4)
# http://TGRstack.com/#ts-module_articles_part-1
# List all files in ./dist (Section 3. Figure 01.)
# including subdirectories
###
falieson:./ts-module/$ tsc ../ # run the compiler a third time in a row
falieson:./ts-module/$ cd dist/ && find . && cd ../ # return the root dir
.
./hello
./hello/HelloWorld.d.ts # <== the new declaration file
./hello/HelloWorld.js
./hello/HelloWorld.js.map
./HelloWorld.js # // garbage from a previous build
./HelloWorld.js.map # // garbage from a previous build
./index.d.ts # <== the new declaration file
./index.js
./index.js.map
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment