Skip to content

Instantly share code, notes, and snippets.

@aleph-naught2tog
Last active January 18, 2020 01:06
Show Gist options
  • Save aleph-naught2tog/f1fba56911a2c91b5582910c0eed0a59 to your computer and use it in GitHub Desktop.
Save aleph-naught2tog/f1fba56911a2c91b5582910c0eed0a59 to your computer and use it in GitHub Desktop.
Generate a list of the probably @types packages for missing type files
`tsc | grep 'TS7016'`.split("\n").map(&:strip).map { |str| /('|"").+?(?=\1)/.match(str) }.map { |reg| reg[0].gsub(/'|"/, '') }.uniq.map { |str| "yarn add @types/#{str};" }.join("\n")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment