Skip to content

Instantly share code, notes, and snippets.

@dancancro
Last active October 22, 2016 18:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dancancro/4e55152308372745bebc3cb2451a65e6 to your computer and use it in GitHub Desktop.
Save dancancro/4e55152308372745bebc3cb2451a65e6 to your computer and use it in GitHub Desktop.
/typings directory file structures for two different projects
Project A
.
├── browser
│   ├── ambient
│   │   ├── angular-protractor
│   │   │   └── index.d.ts
│   │   ├── es6-shim
│   │   │   └── index.d.ts
│   │   ├── jasmine
│   │   │   └── index.d.ts
│   │   └── selenium-webdriver
│   │   └── index.d.ts
│   └── definitions
│   └── node-uuid
│   └── index.d.ts
├── browser.d.ts
├── index.d.ts
├── main
│   ├── ambient
│   │   ├── angular-protractor
│   │   │   └── index.d.ts
│   │   ├── es6-shim
│   │   │   └── index.d.ts
│   │   ├── jasmine
│   │   │   └── index.d.ts
│   │   └── selenium-webdriver
│   │   └── index.d.ts
│   └── definitions
│   └── node-uuid
│   └── index.d.ts
├── main.d.ts
└── modules
└── node-uuid
├── index.d.ts
└── typings.json
Project B
.
├── globals
│   ├── assertion-error
│   │   ├── index.d.ts
│   │   └── typings.json
│   ├── jasmine
│   │   ├── index.d.ts
│   │   └── typings.json
│   └── node
│   ├── index.d.ts
│   └── typings.json
└── index.d.ts
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment