├── .github └── assets │ ├── footer.png │ └── logo.webp ├── 01-fundamentos-nodejs └── 01-helloworld │ └── hello.js ├── 02-meu-primeiro-projeto ├── _commands.txt ├── package.json └── src │ └── index.js ├── 03-projeto-mario-kart ├── docs │ ├── bowser.gif │ ├── dk.gif │ ├── header.gif │ ├── luigi.gif │ ├── mario.gif │ ├── peach.gif │ ├── toad.gif │ └── yoshi.gif ├── extras.md ├── package.json ├── readme.md └── src │ └── index.js ├── 04-commonjs-modules ├── package.json └── src │ ├── main.js │ └── services │ ├── config.js │ ├── database.js │ └── products.js ├── 05-esm-modules ├── package.json └── src │ ├── index.js │ └── utils │ ├── api.js │ └── database.js ├── 06-shopee-cart ├── arquitetura.png ├── documentação.md ├── package.json ├── readme.md └── src │ ├── index.js │ └── services │ ├── cart.js │ └── item.js ├── 07-npm-packages-basic ├── .gitignore ├── package-lock.json ├── package.json └── src │ └── index.js ├── 08-npm-scripts ├── docs │ └── semmantic-script-names.md ├── package-lock.json ├── package.json └── src │ └── index.js ├── 09-npm-enviroment ├── .env.development ├── .env.prod ├── .gitignore ├── docs │ └── dotenv.tldr ├── package-lock.json ├── package.json └── src │ ├── database │ └── data.js │ └── index.js ├── 10-typescript ├── .gitignore ├── docs │ └── comandos.md ├── node_modules │ ├── .bin │ │ ├── esbuild │ │ ├── esbuild.cmd │ │ ├── esbuild.ps1 │ │ ├── glob │ │ ├── glob.cmd │ │ ├── glob.ps1 │ │ ├── node-which │ │ ├── node-which.cmd │ │ ├── node-which.ps1 │ │ ├── rollup │ │ ├── rollup.cmd │ │ ├── rollup.ps1 │ │ ├── sucrase │ │ ├── sucrase-node │ │ ├── sucrase-node.cmd │ │ ├── sucrase-node.ps1 │ │ ├── sucrase.cmd │ │ ├── sucrase.ps1 │ │ ├── tree-kill │ │ ├── tree-kill.cmd │ │ ├── tree-kill.ps1 │ │ ├── tsc │ │ ├── tsc.cmd │ │ ├── tsc.ps1 │ │ ├── tsserver │ │ ├── tsserver.cmd │ │ ├── tsserver.ps1 │ │ ├── tsup │ │ ├── tsup-node │ │ ├── tsup-node.cmd │ │ ├── tsup-node.ps1 │ │ ├── tsup.cmd │ │ ├── tsup.ps1 │ │ ├── tsx │ │ ├── tsx.cmd │ │ └── tsx.ps1 │ ├── .package-lock.json │ ├── @esbuild │ │ └── win32-x64 │ │ │ ├── README.md │ │ │ ├── esbuild.exe │ │ │ └── package.json │ ├── @isaacs │ │ └── cliui │ │ │ ├── LICENSE.txt │ │ │ ├── README.md │ │ │ ├── build │ │ │ ├── index.cjs │ │ │ ├── index.d.cts │ │ │ └── lib │ │ │ │ └── index.js │ │ │ ├── index.mjs │ │ │ └── package.json │ ├── @jridgewell │ │ ├── gen-mapping │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── gen-mapping.mjs │ │ │ │ ├── gen-mapping.mjs.map │ │ │ │ ├── gen-mapping.umd.js │ │ │ │ ├── gen-mapping.umd.js.map │ │ │ │ └── types │ │ │ │ │ ├── gen-mapping.d.ts │ │ │ │ │ ├── sourcemap-segment.d.ts │ │ │ │ │ └── types.d.ts │ │ │ └── package.json │ │ ├── resolve-uri │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── resolve-uri.mjs │ │ │ │ ├── resolve-uri.mjs.map │ │ │ │ ├── resolve-uri.umd.js │ │ │ │ ├── resolve-uri.umd.js.map │ │ │ │ └── types │ │ │ │ │ └── resolve-uri.d.ts │ │ │ └── package.json │ │ ├── set-array │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── set-array.mjs │ │ │ │ ├── set-array.mjs.map │ │ │ │ ├── set-array.umd.js │ │ │ │ ├── set-array.umd.js.map │ │ │ │ └── types │ │ │ │ │ └── set-array.d.ts │ │ │ ├── package.json │ │ │ └── src │ │ │ │ └── set-array.ts │ │ ├── sourcemap-codec │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ │ ├── sourcemap-codec.mjs │ │ │ │ ├── sourcemap-codec.mjs.map │ │ │ │ ├── sourcemap-codec.umd.js │ │ │ │ ├── sourcemap-codec.umd.js.map │ │ │ │ └── types │ │ │ │ │ └── sourcemap-codec.d.ts │ │ │ └── package.json │ │ └── trace-mapping │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── dist │ │ │ ├── trace-mapping.mjs │ │ │ ├── trace-mapping.mjs.map │ │ │ ├── trace-mapping.umd.js │ │ │ ├── trace-mapping.umd.js.map │ │ │ └── types │ │ │ │ ├── any-map.d.ts │ │ │ │ ├── binary-search.d.ts │ │ │ │ ├── by-source.d.ts │ │ │ │ ├── resolve.d.ts │ │ │ │ ├── sort.d.ts │ │ │ │ ├── sourcemap-segment.d.ts │ │ │ │ ├── strip-filename.d.ts │ │ │ │ ├── trace-mapping.d.ts │ │ │ │ └── types.d.ts │ │ │ └── package.json │ ├── @nodelib │ │ ├── fs.scandir │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── out │ │ │ │ ├── adapters │ │ │ │ │ ├── fs.d.ts │ │ │ │ │ └── fs.js │ │ │ │ ├── constants.d.ts │ │ │ │ ├── constants.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── providers │ │ │ │ │ ├── async.d.ts │ │ │ │ │ ├── async.js │ │ │ │ │ ├── common.d.ts │ │ │ │ │ ├── common.js │ │ │ │ │ ├── sync.d.ts │ │ │ │ │ └── sync.js │ │ │ │ ├── settings.d.ts │ │ │ │ ├── settings.js │ │ │ │ ├── types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ │ └── utils │ │ │ │ │ ├── fs.d.ts │ │ │ │ │ ├── fs.js │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ ├── fs.stat │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── out │ │ │ │ ├── adapters │ │ │ │ │ ├── fs.d.ts │ │ │ │ │ └── fs.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── providers │ │ │ │ │ ├── async.d.ts │ │ │ │ │ ├── async.js │ │ │ │ │ ├── sync.d.ts │ │ │ │ │ └── sync.js │ │ │ │ ├── settings.d.ts │ │ │ │ ├── settings.js │ │ │ │ └── types │ │ │ │ │ ├── index.d.ts │ │ │ │ │ └── index.js │ │ │ └── package.json │ │ └── fs.walk │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── out │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── providers │ │ │ │ ├── async.d.ts │ │ │ │ ├── async.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── stream.d.ts │ │ │ │ ├── stream.js │ │ │ │ ├── sync.d.ts │ │ │ │ └── sync.js │ │ │ ├── readers │ │ │ │ ├── async.d.ts │ │ │ │ ├── async.js │ │ │ │ ├── common.d.ts │ │ │ │ ├── common.js │ │ │ │ ├── reader.d.ts │ │ │ │ ├── reader.js │ │ │ │ ├── sync.d.ts │ │ │ │ └── sync.js │ │ │ ├── settings.d.ts │ │ │ ├── settings.js │ │ │ └── types │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── package.json │ ├── @pkgjs │ │ └── parseargs │ │ │ ├── .editorconfig │ │ │ ├── CHANGELOG.md │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── examples │ │ │ ├── is-default-value.js │ │ │ ├── limit-long-syntax.js │ │ │ ├── negate.js │ │ │ ├── no-repeated-options.js │ │ │ ├── ordered-options.mjs │ │ │ └── simple-hard-coded.js │ │ │ ├── index.js │ │ │ ├── internal │ │ │ ├── errors.js │ │ │ ├── primordials.js │ │ │ ├── util.js │ │ │ └── validators.js │ │ │ ├── package.json │ │ │ └── utils.js │ ├── @rollup │ │ └── rollup-win32-x64-msvc │ │ │ ├── README.md │ │ │ ├── package.json │ │ │ └── rollup.win32-x64-msvc.node │ ├── @types │ │ └── estree │ │ │ ├── LICENSE │ │ │ ├── README.md │ │ │ ├── flow.d.ts │ │ │ ├── index.d.ts │ │ │ └── package.json │ ├── ansi-regex │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── ansi-styles │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── any-promise │ │ ├── .jshintrc │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── implementation.d.ts │ │ ├── implementation.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── loader.js │ │ ├── optional.js │ │ ├── package.json │ │ ├── register-shim.js │ │ ├── register.d.ts │ │ ├── register.js │ │ └── register │ │ │ ├── bluebird.d.ts │ │ │ ├── bluebird.js │ │ │ ├── es6-promise.d.ts │ │ │ ├── es6-promise.js │ │ │ ├── lie.d.ts │ │ │ ├── lie.js │ │ │ ├── native-promise-only.d.ts │ │ │ ├── native-promise-only.js │ │ │ ├── pinkie.d.ts │ │ │ ├── pinkie.js │ │ │ ├── promise.d.ts │ │ │ ├── promise.js │ │ │ ├── q.d.ts │ │ │ ├── q.js │ │ │ ├── rsvp.d.ts │ │ │ ├── rsvp.js │ │ │ ├── vow.d.ts │ │ │ ├── vow.js │ │ │ ├── when.d.ts │ │ │ └── when.js │ ├── anymatch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── array-union │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── balanced-match │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── binary-extensions │ │ ├── binary-extensions.json │ │ ├── binary-extensions.json.d.ts │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── brace-expansion │ │ ├── .github │ │ │ └── FUNDING.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── braces │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── compile.js │ │ │ ├── constants.js │ │ │ ├── expand.js │ │ │ ├── parse.js │ │ │ ├── stringify.js │ │ │ └── utils.js │ │ └── package.json │ ├── bundle-require │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── index.cjs │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── cac │ │ ├── LICENSE │ │ ├── README.md │ │ ├── deno │ │ │ ├── CAC.ts │ │ │ ├── Command.ts │ │ │ ├── Option.ts │ │ │ ├── deno.ts │ │ │ ├── index.ts │ │ │ └── utils.ts │ │ ├── dist │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── index.mjs │ │ ├── index-compat.js │ │ ├── mod.js │ │ ├── mod.ts │ │ └── package.json │ ├── chokidar │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── constants.js │ │ │ ├── fsevents-handler.js │ │ │ └── nodefs-handler.js │ │ ├── package.json │ │ └── types │ │ │ └── index.d.ts │ ├── color-convert │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── conversions.js │ │ ├── index.js │ │ ├── package.json │ │ └── route.js │ ├── color-name │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── commander │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── Readme.md │ │ ├── index.js │ │ ├── package.json │ │ └── typings │ │ │ └── index.d.ts │ ├── cross-spawn │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── enoent.js │ │ │ ├── parse.js │ │ │ └── util │ │ │ │ ├── escape.js │ │ │ │ ├── readShebang.js │ │ │ │ └── resolveCommand.js │ │ └── package.json │ ├── debug │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ ├── browser.js │ │ │ ├── common.js │ │ │ ├── index.js │ │ │ └── node.js │ ├── dir-glob │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── eastasianwidth │ │ ├── README.md │ │ ├── eastasianwidth.js │ │ └── package.json │ ├── emoji-regex │ │ ├── LICENSE-MIT.txt │ │ ├── README.md │ │ ├── RGI_Emoji.d.ts │ │ ├── RGI_Emoji.js │ │ ├── es2015 │ │ │ ├── RGI_Emoji.d.ts │ │ │ ├── RGI_Emoji.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── text.d.ts │ │ │ └── text.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── package.json │ │ ├── text.d.ts │ │ └── text.js │ ├── esbuild │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── bin │ │ │ └── esbuild │ │ ├── install.js │ │ ├── lib │ │ │ ├── main.d.ts │ │ │ └── main.js │ │ └── package.json │ ├── execa │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── lib │ │ │ ├── command.js │ │ │ ├── error.js │ │ │ ├── kill.js │ │ │ ├── promise.js │ │ │ ├── stdio.js │ │ │ └── stream.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── fast-glob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── out │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── managers │ │ │ │ ├── tasks.d.ts │ │ │ │ └── tasks.js │ │ │ ├── providers │ │ │ │ ├── async.d.ts │ │ │ │ ├── async.js │ │ │ │ ├── filters │ │ │ │ │ ├── deep.d.ts │ │ │ │ │ ├── deep.js │ │ │ │ │ ├── entry.d.ts │ │ │ │ │ ├── entry.js │ │ │ │ │ ├── error.d.ts │ │ │ │ │ └── error.js │ │ │ │ ├── matchers │ │ │ │ │ ├── matcher.d.ts │ │ │ │ │ ├── matcher.js │ │ │ │ │ ├── partial.d.ts │ │ │ │ │ └── partial.js │ │ │ │ ├── provider.d.ts │ │ │ │ ├── provider.js │ │ │ │ ├── stream.d.ts │ │ │ │ ├── stream.js │ │ │ │ ├── sync.d.ts │ │ │ │ ├── sync.js │ │ │ │ └── transformers │ │ │ │ │ ├── entry.d.ts │ │ │ │ │ └── entry.js │ │ │ ├── readers │ │ │ │ ├── async.d.ts │ │ │ │ ├── async.js │ │ │ │ ├── reader.d.ts │ │ │ │ ├── reader.js │ │ │ │ ├── stream.d.ts │ │ │ │ ├── stream.js │ │ │ │ ├── sync.d.ts │ │ │ │ └── sync.js │ │ │ ├── settings.d.ts │ │ │ ├── settings.js │ │ │ ├── types │ │ │ │ ├── index.d.ts │ │ │ │ └── index.js │ │ │ └── utils │ │ │ │ ├── array.d.ts │ │ │ │ ├── array.js │ │ │ │ ├── errno.d.ts │ │ │ │ ├── errno.js │ │ │ │ ├── fs.d.ts │ │ │ │ ├── fs.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── path.d.ts │ │ │ │ ├── path.js │ │ │ │ ├── pattern.d.ts │ │ │ │ ├── pattern.js │ │ │ │ ├── stream.d.ts │ │ │ │ ├── stream.js │ │ │ │ ├── string.d.ts │ │ │ │ └── string.js │ │ └── package.json │ ├── fastq │ │ ├── .github │ │ │ ├── dependabot.yml │ │ │ └── workflows │ │ │ │ └── ci.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bench.js │ │ ├── example.js │ │ ├── example.mjs │ │ ├── index.d.ts │ │ ├── package.json │ │ ├── queue.js │ │ └── test │ │ │ ├── example.ts │ │ │ ├── promise.js │ │ │ ├── test.js │ │ │ └── tsconfig.json │ ├── fill-range │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── foreground-child │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── cjs │ │ │ │ ├── all-signals.d.ts │ │ │ │ ├── all-signals.d.ts.map │ │ │ │ ├── all-signals.js │ │ │ │ ├── all-signals.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── package.json │ │ │ │ ├── watchdog.d.ts │ │ │ │ ├── watchdog.d.ts.map │ │ │ │ ├── watchdog.js │ │ │ │ └── watchdog.js.map │ │ │ └── mjs │ │ │ │ ├── all-signals.d.ts │ │ │ │ ├── all-signals.d.ts.map │ │ │ │ ├── all-signals.js │ │ │ │ ├── all-signals.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── package.json │ │ │ │ ├── watchdog.d.ts │ │ │ │ ├── watchdog.d.ts.map │ │ │ │ ├── watchdog.js │ │ │ │ └── watchdog.js.map │ │ ├── node_modules │ │ │ └── signal-exit │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── README.md │ │ │ │ ├── dist │ │ │ │ ├── cjs │ │ │ │ │ ├── browser.d.ts │ │ │ │ │ ├── browser.d.ts.map │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── browser.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── package.json │ │ │ │ │ ├── signals.d.ts │ │ │ │ │ ├── signals.d.ts.map │ │ │ │ │ ├── signals.js │ │ │ │ │ └── signals.js.map │ │ │ │ └── mjs │ │ │ │ │ ├── browser.d.ts │ │ │ │ │ ├── browser.d.ts.map │ │ │ │ │ ├── browser.js │ │ │ │ │ ├── browser.js.map │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── index.d.ts.map │ │ │ │ │ ├── index.js │ │ │ │ │ ├── index.js.map │ │ │ │ │ ├── package.json │ │ │ │ │ ├── signals.d.ts │ │ │ │ │ ├── signals.d.ts.map │ │ │ │ │ ├── signals.js │ │ │ │ │ └── signals.js.map │ │ │ │ └── package.json │ │ └── package.json │ ├── get-stream │ │ ├── buffer-stream.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── get-tsconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── index.cjs │ │ │ ├── index.d.cts │ │ │ ├── index.d.mts │ │ │ └── index.mjs │ │ └── package.json │ ├── glob-parent │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── glob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── commonjs │ │ │ │ ├── glob.d.ts │ │ │ │ ├── glob.d.ts.map │ │ │ │ ├── glob.js │ │ │ │ ├── glob.js.map │ │ │ │ ├── has-magic.d.ts │ │ │ │ ├── has-magic.d.ts.map │ │ │ │ ├── has-magic.js │ │ │ │ ├── has-magic.js.map │ │ │ │ ├── ignore.d.ts │ │ │ │ ├── ignore.d.ts.map │ │ │ │ ├── ignore.js │ │ │ │ ├── ignore.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── package.json │ │ │ │ ├── pattern.d.ts │ │ │ │ ├── pattern.d.ts.map │ │ │ │ ├── pattern.js │ │ │ │ ├── pattern.js.map │ │ │ │ ├── processor.d.ts │ │ │ │ ├── processor.d.ts.map │ │ │ │ ├── processor.js │ │ │ │ ├── processor.js.map │ │ │ │ ├── walker.d.ts │ │ │ │ ├── walker.d.ts.map │ │ │ │ ├── walker.js │ │ │ │ └── walker.js.map │ │ │ └── esm │ │ │ │ ├── bin.d.mts │ │ │ │ ├── bin.d.mts.map │ │ │ │ ├── bin.mjs │ │ │ │ ├── bin.mjs.map │ │ │ │ ├── glob.d.ts │ │ │ │ ├── glob.d.ts.map │ │ │ │ ├── glob.js │ │ │ │ ├── glob.js.map │ │ │ │ ├── has-magic.d.ts │ │ │ │ ├── has-magic.d.ts.map │ │ │ │ ├── has-magic.js │ │ │ │ ├── has-magic.js.map │ │ │ │ ├── ignore.d.ts │ │ │ │ ├── ignore.d.ts.map │ │ │ │ ├── ignore.js │ │ │ │ ├── ignore.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── package.json │ │ │ │ ├── pattern.d.ts │ │ │ │ ├── pattern.d.ts.map │ │ │ │ ├── pattern.js │ │ │ │ ├── pattern.js.map │ │ │ │ ├── processor.d.ts │ │ │ │ ├── processor.d.ts.map │ │ │ │ ├── processor.js │ │ │ │ ├── processor.js.map │ │ │ │ ├── walker.d.ts │ │ │ │ ├── walker.d.ts.map │ │ │ │ ├── walker.js │ │ │ │ └── walker.js.map │ │ └── package.json │ ├── globby │ │ ├── gitignore.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ ├── readme.md │ │ └── stream-utils.js │ ├── human-signals │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ └── src │ │ │ │ ├── core.js │ │ │ │ ├── core.js.map │ │ │ │ ├── main.d.ts │ │ │ │ ├── main.js │ │ │ │ ├── main.js.map │ │ │ │ ├── realtime.js │ │ │ │ ├── realtime.js.map │ │ │ │ ├── signals.js │ │ │ │ └── signals.js.map │ │ └── package.json │ ├── ignore │ │ ├── LICENSE-MIT │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── legacy.js │ │ └── package.json │ ├── is-binary-path │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-extglob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-fullwidth-code-point │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── is-glob │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-number │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── is-stream │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── isexe │ │ ├── .npmignore │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── mode.js │ │ ├── package.json │ │ ├── test │ │ │ └── basic.js │ │ └── windows.js │ ├── jackspeak │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── dist │ │ │ ├── commonjs │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── package.json │ │ │ │ ├── parse-args-cjs.cjs.map │ │ │ │ ├── parse-args-cjs.d.cts.map │ │ │ │ ├── parse-args.d.ts │ │ │ │ ├── parse-args.d.ts.map │ │ │ │ ├── parse-args.js │ │ │ │ └── parse-args.js.map │ │ │ └── esm │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── package.json │ │ │ │ ├── parse-args.d.ts │ │ │ │ ├── parse-args.d.ts.map │ │ │ │ ├── parse-args.js │ │ │ │ └── parse-args.js.map │ │ └── package.json │ ├── joycon │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ ├── package.json │ │ └── types │ │ │ └── index.d.ts │ ├── lilconfig │ │ ├── LICENSE │ │ ├── package.json │ │ ├── readme.md │ │ └── src │ │ │ ├── index.d.ts │ │ │ └── index.js │ ├── lines-and-columns │ │ ├── LICENSE │ │ ├── README.md │ │ ├── build │ │ │ ├── index.d.ts │ │ │ └── index.js │ │ └── package.json │ ├── load-tsconfig │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── index.cjs │ │ │ └── index.js │ │ └── package.json │ ├── lodash.sortby │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── lru-cache │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── commonjs │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── package.json │ │ │ └── esm │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── package.json │ │ └── package.json │ ├── merge-stream │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── merge2 │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── micromatch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── mimic-fn │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── minimatch │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── cjs │ │ │ │ ├── assert-valid-pattern.d.ts │ │ │ │ ├── assert-valid-pattern.d.ts.map │ │ │ │ ├── assert-valid-pattern.js │ │ │ │ ├── assert-valid-pattern.js.map │ │ │ │ ├── ast.d.ts │ │ │ │ ├── ast.d.ts.map │ │ │ │ ├── ast.js │ │ │ │ ├── ast.js.map │ │ │ │ ├── brace-expressions.d.ts │ │ │ │ ├── brace-expressions.d.ts.map │ │ │ │ ├── brace-expressions.js │ │ │ │ ├── brace-expressions.js.map │ │ │ │ ├── escape.d.ts │ │ │ │ ├── escape.d.ts.map │ │ │ │ ├── escape.js │ │ │ │ ├── escape.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── package.json │ │ │ │ ├── unescape.d.ts │ │ │ │ ├── unescape.d.ts.map │ │ │ │ ├── unescape.js │ │ │ │ └── unescape.js.map │ │ │ └── mjs │ │ │ │ ├── assert-valid-pattern.d.ts │ │ │ │ ├── assert-valid-pattern.d.ts.map │ │ │ │ ├── assert-valid-pattern.js │ │ │ │ ├── assert-valid-pattern.js.map │ │ │ │ ├── ast.d.ts │ │ │ │ ├── ast.d.ts.map │ │ │ │ ├── ast.js │ │ │ │ ├── ast.js.map │ │ │ │ ├── brace-expressions.d.ts │ │ │ │ ├── brace-expressions.d.ts.map │ │ │ │ ├── brace-expressions.js │ │ │ │ ├── brace-expressions.js.map │ │ │ │ ├── escape.d.ts │ │ │ │ ├── escape.d.ts.map │ │ │ │ ├── escape.js │ │ │ │ ├── escape.js.map │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ ├── package.json │ │ │ │ ├── unescape.d.ts │ │ │ │ ├── unescape.d.ts.map │ │ │ │ ├── unescape.js │ │ │ │ └── unescape.js.map │ │ └── package.json │ ├── minipass │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── commonjs │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── package.json │ │ │ └── esm │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── package.json │ │ └── package.json │ ├── ms │ │ ├── index.js │ │ ├── license.md │ │ ├── package.json │ │ └── readme.md │ ├── mz │ │ ├── HISTORY.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── child_process.js │ │ ├── crypto.js │ │ ├── dns.js │ │ ├── fs.js │ │ ├── index.js │ │ ├── package.json │ │ ├── readline.js │ │ └── zlib.js │ ├── normalize-path │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── npm-run-path │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── object-assign │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── onetime │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── path-key │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── path-scurry │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── dist │ │ │ ├── cjs │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── package.json │ │ │ └── mjs │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.d.ts.map │ │ │ │ ├── index.js │ │ │ │ ├── index.js.map │ │ │ │ └── package.json │ │ └── package.json │ ├── path-type │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── picomatch │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── constants.js │ │ │ ├── parse.js │ │ │ ├── picomatch.js │ │ │ ├── scan.js │ │ │ └── utils.js │ │ └── package.json │ ├── pirates │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ ├── postcss-load-config │ │ ├── LICENSE │ │ ├── README.md │ │ ├── package.json │ │ └── src │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── options.js │ │ │ ├── plugins.js │ │ │ └── req.js │ ├── punycode │ │ ├── LICENSE-MIT.txt │ │ ├── README.md │ │ ├── package.json │ │ ├── punycode.es6.js │ │ └── punycode.js │ ├── queue-microtask │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── readdirp │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── resolve-from │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── resolve-pkg-maps │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── index.cjs │ │ │ ├── index.d.cts │ │ │ ├── index.d.mts │ │ │ └── index.mjs │ │ └── package.json │ ├── reusify │ │ ├── .coveralls.yml │ │ ├── .travis.yml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── benchmarks │ │ │ ├── createNoCodeFunction.js │ │ │ ├── fib.js │ │ │ └── reuseNoCodeFunction.js │ │ ├── package.json │ │ ├── reusify.js │ │ └── test.js │ ├── rollup │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── dist │ │ │ ├── bin │ │ │ │ └── rollup │ │ │ ├── es │ │ │ │ ├── getLogFilter.js │ │ │ │ ├── package.json │ │ │ │ ├── parseAst.js │ │ │ │ ├── rollup.js │ │ │ │ └── shared │ │ │ │ │ ├── node-entry.js │ │ │ │ │ ├── parseAst.js │ │ │ │ │ └── watch.js │ │ │ ├── getLogFilter.d.ts │ │ │ ├── getLogFilter.js │ │ │ ├── loadConfigFile.d.ts │ │ │ ├── loadConfigFile.js │ │ │ ├── native.js │ │ │ ├── parseAst.d.ts │ │ │ ├── parseAst.js │ │ │ ├── rollup.d.ts │ │ │ ├── rollup.js │ │ │ └── shared │ │ │ │ ├── fsevents-importer.js │ │ │ │ ├── index.js │ │ │ │ ├── loadConfigFile.js │ │ │ │ ├── parseAst.js │ │ │ │ ├── rollup.js │ │ │ │ ├── watch-cli.js │ │ │ │ └── watch.js │ │ └── package.json │ ├── run-parallel │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── shebang-command │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── shebang-regex │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── signal-exit │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── index.js │ │ ├── package.json │ │ └── signals.js │ ├── slash │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── source-map │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── lib │ │ │ ├── array-set.js │ │ │ ├── base64-vlq.js │ │ │ ├── base64.js │ │ │ ├── binary-search.js │ │ │ ├── mapping-list.js │ │ │ ├── mappings.wasm │ │ │ ├── read-wasm-browser.js │ │ │ ├── read-wasm.js │ │ │ ├── source-map-consumer.js │ │ │ ├── source-map-generator.js │ │ │ ├── source-node.js │ │ │ ├── url-browser.js │ │ │ ├── url.js │ │ │ ├── util.js │ │ │ └── wasm.js │ │ ├── package.json │ │ ├── source-map.d.ts │ │ └── source-map.js │ ├── string-width-cjs │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ ├── ansi-regex │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── emoji-regex │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ ├── README.md │ │ │ │ ├── es2015 │ │ │ │ │ ├── index.js │ │ │ │ │ └── text.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── text.js │ │ │ └── strip-ansi │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ └── readme.md │ ├── string-width │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── strip-ansi-cjs │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ └── ansi-regex │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ └── readme.md │ ├── strip-ansi │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── strip-final-newline │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ ├── sucrase │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ ├── sucrase │ │ │ └── sucrase-node │ │ ├── dist │ │ │ ├── CJSImportProcessor.js │ │ │ ├── HelperManager.js │ │ │ ├── NameManager.js │ │ │ ├── Options-gen-types.js │ │ │ ├── Options.js │ │ │ ├── TokenProcessor.js │ │ │ ├── cli.js │ │ │ ├── computeSourceMap.js │ │ │ ├── esm │ │ │ │ ├── CJSImportProcessor.js │ │ │ │ ├── HelperManager.js │ │ │ │ ├── NameManager.js │ │ │ │ ├── Options-gen-types.js │ │ │ │ ├── Options.js │ │ │ │ ├── TokenProcessor.js │ │ │ │ ├── cli.js │ │ │ │ ├── computeSourceMap.js │ │ │ │ ├── identifyShadowedGlobals.js │ │ │ │ ├── index.js │ │ │ │ ├── parser │ │ │ │ │ ├── index.js │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── flow.js │ │ │ │ │ │ ├── jsx │ │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ │ └── xhtml.js │ │ │ │ │ │ ├── types.js │ │ │ │ │ │ └── typescript.js │ │ │ │ │ ├── tokenizer │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── keywords.js │ │ │ │ │ │ ├── readWord.js │ │ │ │ │ │ ├── readWordTree.js │ │ │ │ │ │ ├── state.js │ │ │ │ │ │ └── types.js │ │ │ │ │ ├── traverser │ │ │ │ │ │ ├── base.js │ │ │ │ │ │ ├── expression.js │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ ├── lval.js │ │ │ │ │ │ ├── statement.js │ │ │ │ │ │ └── util.js │ │ │ │ │ └── util │ │ │ │ │ │ ├── charcodes.js │ │ │ │ │ │ ├── identifier.js │ │ │ │ │ │ └── whitespace.js │ │ │ │ ├── register.js │ │ │ │ ├── transformers │ │ │ │ │ ├── CJSImportTransformer.js │ │ │ │ │ ├── ESMImportTransformer.js │ │ │ │ │ ├── FlowTransformer.js │ │ │ │ │ ├── JSXTransformer.js │ │ │ │ │ ├── JestHoistTransformer.js │ │ │ │ │ ├── NumericSeparatorTransformer.js │ │ │ │ │ ├── OptionalCatchBindingTransformer.js │ │ │ │ │ ├── OptionalChainingNullishTransformer.js │ │ │ │ │ ├── ReactDisplayNameTransformer.js │ │ │ │ │ ├── ReactHotLoaderTransformer.js │ │ │ │ │ ├── RootTransformer.js │ │ │ │ │ ├── Transformer.js │ │ │ │ │ └── TypeScriptTransformer.js │ │ │ │ └── util │ │ │ │ │ ├── elideImportEquals.js │ │ │ │ │ ├── formatTokens.js │ │ │ │ │ ├── getClassInfo.js │ │ │ │ │ ├── getDeclarationInfo.js │ │ │ │ │ ├── getIdentifierNames.js │ │ │ │ │ ├── getImportExportSpecifierInfo.js │ │ │ │ │ ├── getJSXPragmaInfo.js │ │ │ │ │ ├── getNonTypeIdentifiers.js │ │ │ │ │ ├── getTSImportedNames.js │ │ │ │ │ ├── isAsyncOperation.js │ │ │ │ │ ├── isExportFrom.js │ │ │ │ │ ├── isIdentifier.js │ │ │ │ │ ├── removeMaybeImportAttributes.js │ │ │ │ │ └── shouldElideDefaultExport.js │ │ │ ├── identifyShadowedGlobals.js │ │ │ ├── index.js │ │ │ ├── parser │ │ │ │ ├── index.js │ │ │ │ ├── plugins │ │ │ │ │ ├── flow.js │ │ │ │ │ ├── jsx │ │ │ │ │ │ ├── index.js │ │ │ │ │ │ └── xhtml.js │ │ │ │ │ ├── types.js │ │ │ │ │ └── typescript.js │ │ │ │ ├── tokenizer │ │ │ │ │ ├── index.js │ │ │ │ │ ├── keywords.js │ │ │ │ │ ├── readWord.js │ │ │ │ │ ├── readWordTree.js │ │ │ │ │ ├── state.js │ │ │ │ │ └── types.js │ │ │ │ ├── traverser │ │ │ │ │ ├── base.js │ │ │ │ │ ├── expression.js │ │ │ │ │ ├── index.js │ │ │ │ │ ├── lval.js │ │ │ │ │ ├── statement.js │ │ │ │ │ └── util.js │ │ │ │ └── util │ │ │ │ │ ├── charcodes.js │ │ │ │ │ ├── identifier.js │ │ │ │ │ └── whitespace.js │ │ │ ├── register.js │ │ │ ├── transformers │ │ │ │ ├── CJSImportTransformer.js │ │ │ │ ├── ESMImportTransformer.js │ │ │ │ ├── FlowTransformer.js │ │ │ │ ├── JSXTransformer.js │ │ │ │ ├── JestHoistTransformer.js │ │ │ │ ├── NumericSeparatorTransformer.js │ │ │ │ ├── OptionalCatchBindingTransformer.js │ │ │ │ ├── OptionalChainingNullishTransformer.js │ │ │ │ ├── ReactDisplayNameTransformer.js │ │ │ │ ├── ReactHotLoaderTransformer.js │ │ │ │ ├── RootTransformer.js │ │ │ │ ├── Transformer.js │ │ │ │ └── TypeScriptTransformer.js │ │ │ ├── types │ │ │ │ ├── CJSImportProcessor.d.ts │ │ │ │ ├── HelperManager.d.ts │ │ │ │ ├── NameManager.d.ts │ │ │ │ ├── Options-gen-types.d.ts │ │ │ │ ├── Options.d.ts │ │ │ │ ├── TokenProcessor.d.ts │ │ │ │ ├── cli.d.ts │ │ │ │ ├── computeSourceMap.d.ts │ │ │ │ ├── identifyShadowedGlobals.d.ts │ │ │ │ ├── index.d.ts │ │ │ │ ├── parser │ │ │ │ │ ├── index.d.ts │ │ │ │ │ ├── plugins │ │ │ │ │ │ ├── flow.d.ts │ │ │ │ │ │ ├── jsx │ │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ │ └── xhtml.d.ts │ │ │ │ │ │ ├── types.d.ts │ │ │ │ │ │ └── typescript.d.ts │ │ │ │ │ ├── tokenizer │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── keywords.d.ts │ │ │ │ │ │ ├── readWord.d.ts │ │ │ │ │ │ ├── readWordTree.d.ts │ │ │ │ │ │ ├── state.d.ts │ │ │ │ │ │ └── types.d.ts │ │ │ │ │ ├── traverser │ │ │ │ │ │ ├── base.d.ts │ │ │ │ │ │ ├── expression.d.ts │ │ │ │ │ │ ├── index.d.ts │ │ │ │ │ │ ├── lval.d.ts │ │ │ │ │ │ ├── statement.d.ts │ │ │ │ │ │ └── util.d.ts │ │ │ │ │ └── util │ │ │ │ │ │ ├── charcodes.d.ts │ │ │ │ │ │ ├── identifier.d.ts │ │ │ │ │ │ └── whitespace.d.ts │ │ │ │ ├── register.d.ts │ │ │ │ ├── transformers │ │ │ │ │ ├── CJSImportTransformer.d.ts │ │ │ │ │ ├── ESMImportTransformer.d.ts │ │ │ │ │ ├── FlowTransformer.d.ts │ │ │ │ │ ├── JSXTransformer.d.ts │ │ │ │ │ ├── JestHoistTransformer.d.ts │ │ │ │ │ ├── NumericSeparatorTransformer.d.ts │ │ │ │ │ ├── OptionalCatchBindingTransformer.d.ts │ │ │ │ │ ├── OptionalChainingNullishTransformer.d.ts │ │ │ │ │ ├── ReactDisplayNameTransformer.d.ts │ │ │ │ │ ├── ReactHotLoaderTransformer.d.ts │ │ │ │ │ ├── RootTransformer.d.ts │ │ │ │ │ ├── Transformer.d.ts │ │ │ │ │ └── TypeScriptTransformer.d.ts │ │ │ │ └── util │ │ │ │ │ ├── elideImportEquals.d.ts │ │ │ │ │ ├── formatTokens.d.ts │ │ │ │ │ ├── getClassInfo.d.ts │ │ │ │ │ ├── getDeclarationInfo.d.ts │ │ │ │ │ ├── getIdentifierNames.d.ts │ │ │ │ │ ├── getImportExportSpecifierInfo.d.ts │ │ │ │ │ ├── getJSXPragmaInfo.d.ts │ │ │ │ │ ├── getNonTypeIdentifiers.d.ts │ │ │ │ │ ├── getTSImportedNames.d.ts │ │ │ │ │ ├── isAsyncOperation.d.ts │ │ │ │ │ ├── isExportFrom.d.ts │ │ │ │ │ ├── isIdentifier.d.ts │ │ │ │ │ ├── removeMaybeImportAttributes.d.ts │ │ │ │ │ └── shouldElideDefaultExport.d.ts │ │ │ └── util │ │ │ │ ├── elideImportEquals.js │ │ │ │ ├── formatTokens.js │ │ │ │ ├── getClassInfo.js │ │ │ │ ├── getDeclarationInfo.js │ │ │ │ ├── getIdentifierNames.js │ │ │ │ ├── getImportExportSpecifierInfo.js │ │ │ │ ├── getJSXPragmaInfo.js │ │ │ │ ├── getNonTypeIdentifiers.js │ │ │ │ ├── getTSImportedNames.js │ │ │ │ ├── isAsyncOperation.js │ │ │ │ ├── isExportFrom.js │ │ │ │ ├── isIdentifier.js │ │ │ │ ├── removeMaybeImportAttributes.js │ │ │ │ └── shouldElideDefaultExport.js │ │ ├── package.json │ │ ├── register │ │ │ ├── index.js │ │ │ ├── js.js │ │ │ ├── jsx.js │ │ │ ├── ts-legacy-module-interop.js │ │ │ ├── ts.js │ │ │ ├── tsx-legacy-module-interop.js │ │ │ └── tsx.js │ │ └── ts-node-plugin │ │ │ └── index.js │ ├── thenify-all │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── thenify │ │ ├── History.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── to-regex-range │ │ ├── LICENSE │ │ ├── README.md │ │ ├── index.js │ │ └── package.json │ ├── tr46 │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── index.js │ │ ├── lib │ │ │ ├── mappingTable.json │ │ │ └── regexes.js │ │ └── package.json │ ├── tree-kill │ │ ├── LICENSE │ │ ├── README.md │ │ ├── cli.js │ │ ├── index.d.ts │ │ ├── index.js │ │ └── package.json │ ├── ts-interface-checker │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ ├── types.d.ts │ │ │ ├── types.js │ │ │ ├── util.d.ts │ │ │ └── util.js │ │ └── package.json │ ├── tsup │ │ ├── LICENSE │ │ ├── README.md │ │ ├── assets │ │ │ ├── cjs_shims.js │ │ │ ├── esm_shims.js │ │ │ └── package.json │ │ ├── dist │ │ │ ├── chunk-7G76EW2R.js │ │ │ ├── chunk-GQ77QZBO.js │ │ │ ├── chunk-OXWBCOL6.js │ │ │ ├── chunk-TLB5GBLJ.js │ │ │ ├── chunk-UIX4URMV.js │ │ │ ├── cli-default.js │ │ │ ├── cli-main.js │ │ │ ├── cli-node.js │ │ │ ├── index.d.ts │ │ │ ├── index.js │ │ │ └── rollup.js │ │ ├── package.json │ │ └── schema.json │ ├── tsx │ │ ├── LICENSE │ │ ├── README.md │ │ ├── dist │ │ │ ├── cjs │ │ │ │ ├── index.cjs │ │ │ │ └── index.mjs │ │ │ ├── cli.cjs │ │ │ ├── cli.mjs │ │ │ ├── client-2f0df4a6.cjs │ │ │ ├── client-e665d820.mjs │ │ │ ├── esm │ │ │ │ ├── index.cjs │ │ │ │ └── index.mjs │ │ │ ├── get-pipe-path-86e97fc9.cjs │ │ │ ├── get-pipe-path-b74d9893.mjs │ │ │ ├── index-29948669.mjs │ │ │ ├── index-971a6964.cjs │ │ │ ├── loader.cjs │ │ │ ├── loader.mjs │ │ │ ├── node-features-c450ed54.cjs │ │ │ ├── node-features-fb266590.mjs │ │ │ ├── package-68fc26ee.mjs │ │ │ ├── package-afa28eaf.cjs │ │ │ ├── pkgroll_create-require-b92e8e0d.mjs │ │ │ ├── pkgroll_create-require-c530e400.cjs │ │ │ ├── preflight.cjs │ │ │ ├── preflight.mjs │ │ │ ├── repl.cjs │ │ │ ├── repl.mjs │ │ │ ├── resolve-ts-path-3fca13b7.cjs │ │ │ ├── resolve-ts-path-eb3847f5.mjs │ │ │ ├── source-map.cjs │ │ │ ├── source-map.mjs │ │ │ ├── suppress-warnings.cjs │ │ │ ├── suppress-warnings.mjs │ │ │ ├── temporary-directory-04b36185.mjs │ │ │ └── temporary-directory-2a027842.cjs │ │ └── package.json │ ├── typescript │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── SECURITY.md │ │ ├── ThirdPartyNoticeText.txt │ │ ├── bin │ │ │ ├── tsc │ │ │ └── tsserver │ │ ├── lib │ │ │ ├── cancellationToken.js │ │ │ ├── cs │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── de │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── es │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── fr │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── it │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── ja │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── ko │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── lib.d.ts │ │ │ ├── lib.decorators.d.ts │ │ │ ├── lib.decorators.legacy.d.ts │ │ │ ├── lib.dom.d.ts │ │ │ ├── lib.dom.iterable.d.ts │ │ │ ├── lib.es2015.collection.d.ts │ │ │ ├── lib.es2015.core.d.ts │ │ │ ├── lib.es2015.d.ts │ │ │ ├── lib.es2015.generator.d.ts │ │ │ ├── lib.es2015.iterable.d.ts │ │ │ ├── lib.es2015.promise.d.ts │ │ │ ├── lib.es2015.proxy.d.ts │ │ │ ├── lib.es2015.reflect.d.ts │ │ │ ├── lib.es2015.symbol.d.ts │ │ │ ├── lib.es2015.symbol.wellknown.d.ts │ │ │ ├── lib.es2016.array.include.d.ts │ │ │ ├── lib.es2016.d.ts │ │ │ ├── lib.es2016.full.d.ts │ │ │ ├── lib.es2017.d.ts │ │ │ ├── lib.es2017.date.d.ts │ │ │ ├── lib.es2017.full.d.ts │ │ │ ├── lib.es2017.intl.d.ts │ │ │ ├── lib.es2017.object.d.ts │ │ │ ├── lib.es2017.sharedmemory.d.ts │ │ │ ├── lib.es2017.string.d.ts │ │ │ ├── lib.es2017.typedarrays.d.ts │ │ │ ├── lib.es2018.asyncgenerator.d.ts │ │ │ ├── lib.es2018.asynciterable.d.ts │ │ │ ├── lib.es2018.d.ts │ │ │ ├── lib.es2018.full.d.ts │ │ │ ├── lib.es2018.intl.d.ts │ │ │ ├── lib.es2018.promise.d.ts │ │ │ ├── lib.es2018.regexp.d.ts │ │ │ ├── lib.es2019.array.d.ts │ │ │ ├── lib.es2019.d.ts │ │ │ ├── lib.es2019.full.d.ts │ │ │ ├── lib.es2019.intl.d.ts │ │ │ ├── lib.es2019.object.d.ts │ │ │ ├── lib.es2019.string.d.ts │ │ │ ├── lib.es2019.symbol.d.ts │ │ │ ├── lib.es2020.bigint.d.ts │ │ │ ├── lib.es2020.d.ts │ │ │ ├── lib.es2020.date.d.ts │ │ │ ├── lib.es2020.full.d.ts │ │ │ ├── lib.es2020.intl.d.ts │ │ │ ├── lib.es2020.number.d.ts │ │ │ ├── lib.es2020.promise.d.ts │ │ │ ├── lib.es2020.sharedmemory.d.ts │ │ │ ├── lib.es2020.string.d.ts │ │ │ ├── lib.es2020.symbol.wellknown.d.ts │ │ │ ├── lib.es2021.d.ts │ │ │ ├── lib.es2021.full.d.ts │ │ │ ├── lib.es2021.intl.d.ts │ │ │ ├── lib.es2021.promise.d.ts │ │ │ ├── lib.es2021.string.d.ts │ │ │ ├── lib.es2021.weakref.d.ts │ │ │ ├── lib.es2022.array.d.ts │ │ │ ├── lib.es2022.d.ts │ │ │ ├── lib.es2022.error.d.ts │ │ │ ├── lib.es2022.full.d.ts │ │ │ ├── lib.es2022.intl.d.ts │ │ │ ├── lib.es2022.object.d.ts │ │ │ ├── lib.es2022.regexp.d.ts │ │ │ ├── lib.es2022.sharedmemory.d.ts │ │ │ ├── lib.es2022.string.d.ts │ │ │ ├── lib.es2023.array.d.ts │ │ │ ├── lib.es2023.collection.d.ts │ │ │ ├── lib.es2023.d.ts │ │ │ ├── lib.es2023.full.d.ts │ │ │ ├── lib.es5.d.ts │ │ │ ├── lib.es6.d.ts │ │ │ ├── lib.esnext.d.ts │ │ │ ├── lib.esnext.decorators.d.ts │ │ │ ├── lib.esnext.disposable.d.ts │ │ │ ├── lib.esnext.full.d.ts │ │ │ ├── lib.esnext.intl.d.ts │ │ │ ├── lib.scripthost.d.ts │ │ │ ├── lib.webworker.d.ts │ │ │ ├── lib.webworker.importscripts.d.ts │ │ │ ├── lib.webworker.iterable.d.ts │ │ │ ├── pl │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── pt-br │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── ru │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── tr │ │ │ │ └── diagnosticMessages.generated.json │ │ │ ├── tsc.js │ │ │ ├── tsserver.js │ │ │ ├── tsserverlibrary.d.ts │ │ │ ├── tsserverlibrary.js │ │ │ ├── typesMap.json │ │ │ ├── typescript.d.ts │ │ │ ├── typescript.js │ │ │ ├── typingsInstaller.js │ │ │ ├── watchGuard.js │ │ │ ├── zh-cn │ │ │ │ └── diagnosticMessages.generated.json │ │ │ └── zh-tw │ │ │ │ └── diagnosticMessages.generated.json │ │ └── package.json │ ├── webidl-conversions │ │ ├── LICENSE.md │ │ ├── README.md │ │ ├── lib │ │ │ └── index.js │ │ └── package.json │ ├── whatwg-url │ │ ├── LICENSE.txt │ │ ├── README.md │ │ ├── lib │ │ │ ├── URL-impl.js │ │ │ ├── URL.js │ │ │ ├── URLSearchParams-impl.js │ │ │ ├── URLSearchParams.js │ │ │ ├── infra.js │ │ │ ├── public-api.js │ │ │ ├── url-state-machine.js │ │ │ ├── urlencoded.js │ │ │ └── utils.js │ │ └── package.json │ ├── which │ │ ├── CHANGELOG.md │ │ ├── LICENSE │ │ ├── README.md │ │ ├── bin │ │ │ └── node-which │ │ ├── package.json │ │ └── which.js │ ├── wrap-ansi-cjs │ │ ├── index.js │ │ ├── license │ │ ├── node_modules │ │ │ ├── ansi-regex │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── ansi-styles │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ ├── emoji-regex │ │ │ │ ├── LICENSE-MIT.txt │ │ │ │ ├── README.md │ │ │ │ ├── es2015 │ │ │ │ │ ├── index.js │ │ │ │ │ └── text.js │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── package.json │ │ │ │ └── text.js │ │ │ ├── string-width │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ │ └── strip-ansi │ │ │ │ ├── index.d.ts │ │ │ │ ├── index.js │ │ │ │ ├── license │ │ │ │ ├── package.json │ │ │ │ └── readme.md │ │ ├── package.json │ │ └── readme.md │ ├── wrap-ansi │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── license │ │ ├── package.json │ │ └── readme.md │ └── yaml │ │ ├── LICENSE │ │ ├── README.md │ │ ├── browser │ │ ├── dist │ │ │ ├── compose │ │ │ │ ├── compose-collection.js │ │ │ │ ├── compose-doc.js │ │ │ │ ├── compose-node.js │ │ │ │ ├── compose-scalar.js │ │ │ │ ├── composer.js │ │ │ │ ├── resolve-block-map.js │ │ │ │ ├── resolve-block-scalar.js │ │ │ │ ├── resolve-block-seq.js │ │ │ │ ├── resolve-end.js │ │ │ │ ├── resolve-flow-collection.js │ │ │ │ ├── resolve-flow-scalar.js │ │ │ │ ├── resolve-props.js │ │ │ │ ├── util-contains-newline.js │ │ │ │ ├── util-empty-scalar-position.js │ │ │ │ ├── util-flow-indent-check.js │ │ │ │ └── util-map-includes.js │ │ │ ├── doc │ │ │ │ ├── Document.js │ │ │ │ ├── anchors.js │ │ │ │ ├── applyReviver.js │ │ │ │ ├── createNode.js │ │ │ │ └── directives.js │ │ │ ├── errors.js │ │ │ ├── index.js │ │ │ ├── log.js │ │ │ ├── node_modules │ │ │ │ └── tslib │ │ │ │ │ └── tslib.es6.js │ │ │ ├── nodes │ │ │ │ ├── Alias.js │ │ │ │ ├── Collection.js │ │ │ │ ├── Node.js │ │ │ │ ├── Pair.js │ │ │ │ ├── Scalar.js │ │ │ │ ├── YAMLMap.js │ │ │ │ ├── YAMLSeq.js │ │ │ │ ├── addPairToJSMap.js │ │ │ │ ├── identity.js │ │ │ │ └── toJS.js │ │ │ ├── parse │ │ │ │ ├── cst-scalar.js │ │ │ │ ├── cst-stringify.js │ │ │ │ ├── cst-visit.js │ │ │ │ ├── cst.js │ │ │ │ ├── lexer.js │ │ │ │ ├── line-counter.js │ │ │ │ └── parser.js │ │ │ ├── public-api.js │ │ │ ├── schema │ │ │ │ ├── Schema.js │ │ │ │ ├── common │ │ │ │ │ ├── map.js │ │ │ │ │ ├── null.js │ │ │ │ │ ├── seq.js │ │ │ │ │ └── string.js │ │ │ │ ├── core │ │ │ │ │ ├── bool.js │ │ │ │ │ ├── float.js │ │ │ │ │ ├── int.js │ │ │ │ │ └── schema.js │ │ │ │ ├── json │ │ │ │ │ └── schema.js │ │ │ │ ├── tags.js │ │ │ │ └── yaml-1.1 │ │ │ │ │ ├── binary.js │ │ │ │ │ ├── bool.js │ │ │ │ │ ├── float.js │ │ │ │ │ ├── int.js │ │ │ │ │ ├── omap.js │ │ │ │ │ ├── pairs.js │ │ │ │ │ ├── schema.js │ │ │ │ │ ├── set.js │ │ │ │ │ └── timestamp.js │ │ │ ├── stringify │ │ │ │ ├── foldFlowLines.js │ │ │ │ ├── stringify.js │ │ │ │ ├── stringifyCollection.js │ │ │ │ ├── stringifyComment.js │ │ │ │ ├── stringifyDocument.js │ │ │ │ ├── stringifyNumber.js │ │ │ │ ├── stringifyPair.js │ │ │ │ └── stringifyString.js │ │ │ ├── util.js │ │ │ └── visit.js │ │ ├── index.js │ │ └── package.json │ │ ├── dist │ │ ├── compose │ │ │ ├── compose-collection.d.ts │ │ │ ├── compose-collection.js │ │ │ ├── compose-doc.d.ts │ │ │ ├── compose-doc.js │ │ │ ├── compose-node.d.ts │ │ │ ├── compose-node.js │ │ │ ├── compose-scalar.d.ts │ │ │ ├── compose-scalar.js │ │ │ ├── composer.d.ts │ │ │ ├── composer.js │ │ │ ├── resolve-block-map.d.ts │ │ │ ├── resolve-block-map.js │ │ │ ├── resolve-block-scalar.d.ts │ │ │ ├── resolve-block-scalar.js │ │ │ ├── resolve-block-seq.d.ts │ │ │ ├── resolve-block-seq.js │ │ │ ├── resolve-end.d.ts │ │ │ ├── resolve-end.js │ │ │ ├── resolve-flow-collection.d.ts │ │ │ ├── resolve-flow-collection.js │ │ │ ├── resolve-flow-scalar.d.ts │ │ │ ├── resolve-flow-scalar.js │ │ │ ├── resolve-props.d.ts │ │ │ ├── resolve-props.js │ │ │ ├── util-contains-newline.d.ts │ │ │ ├── util-contains-newline.js │ │ │ ├── util-empty-scalar-position.d.ts │ │ │ ├── util-empty-scalar-position.js │ │ │ ├── util-flow-indent-check.d.ts │ │ │ ├── util-flow-indent-check.js │ │ │ ├── util-map-includes.d.ts │ │ │ └── util-map-includes.js │ │ ├── doc │ │ │ ├── Document.d.ts │ │ │ ├── Document.js │ │ │ ├── anchors.d.ts │ │ │ ├── anchors.js │ │ │ ├── applyReviver.d.ts │ │ │ ├── applyReviver.js │ │ │ ├── createNode.d.ts │ │ │ ├── createNode.js │ │ │ ├── directives.d.ts │ │ │ └── directives.js │ │ ├── errors.d.ts │ │ ├── errors.js │ │ ├── index.d.ts │ │ ├── index.js │ │ ├── log.d.ts │ │ ├── log.js │ │ ├── nodes │ │ │ ├── Alias.d.ts │ │ │ ├── Alias.js │ │ │ ├── Collection.d.ts │ │ │ ├── Collection.js │ │ │ ├── Node.d.ts │ │ │ ├── Node.js │ │ │ ├── Pair.d.ts │ │ │ ├── Pair.js │ │ │ ├── Scalar.d.ts │ │ │ ├── Scalar.js │ │ │ ├── YAMLMap.d.ts │ │ │ ├── YAMLMap.js │ │ │ ├── YAMLSeq.d.ts │ │ │ ├── YAMLSeq.js │ │ │ ├── addPairToJSMap.d.ts │ │ │ ├── addPairToJSMap.js │ │ │ ├── identity.d.ts │ │ │ ├── identity.js │ │ │ ├── toJS.d.ts │ │ │ └── toJS.js │ │ ├── options.d.ts │ │ ├── parse │ │ │ ├── cst-scalar.d.ts │ │ │ ├── cst-scalar.js │ │ │ ├── cst-stringify.d.ts │ │ │ ├── cst-stringify.js │ │ │ ├── cst-visit.d.ts │ │ │ ├── cst-visit.js │ │ │ ├── cst.d.ts │ │ │ ├── cst.js │ │ │ ├── lexer.d.ts │ │ │ ├── lexer.js │ │ │ ├── line-counter.d.ts │ │ │ ├── line-counter.js │ │ │ ├── parser.d.ts │ │ │ └── parser.js │ │ ├── public-api.d.ts │ │ ├── public-api.js │ │ ├── schema │ │ │ ├── Schema.d.ts │ │ │ ├── Schema.js │ │ │ ├── common │ │ │ │ ├── map.d.ts │ │ │ │ ├── map.js │ │ │ │ ├── null.d.ts │ │ │ │ ├── null.js │ │ │ │ ├── seq.d.ts │ │ │ │ ├── seq.js │ │ │ │ ├── string.d.ts │ │ │ │ └── string.js │ │ │ ├── core │ │ │ │ ├── bool.d.ts │ │ │ │ ├── bool.js │ │ │ │ ├── float.d.ts │ │ │ │ ├── float.js │ │ │ │ ├── int.d.ts │ │ │ │ ├── int.js │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.js │ │ │ ├── json-schema.d.ts │ │ │ ├── json │ │ │ │ ├── schema.d.ts │ │ │ │ └── schema.js │ │ │ ├── tags.d.ts │ │ │ ├── tags.js │ │ │ ├── types.d.ts │ │ │ └── yaml-1.1 │ │ │ │ ├── binary.d.ts │ │ │ │ ├── binary.js │ │ │ │ ├── bool.d.ts │ │ │ │ ├── bool.js │ │ │ │ ├── float.d.ts │ │ │ │ ├── float.js │ │ │ │ ├── int.d.ts │ │ │ │ ├── int.js │ │ │ │ ├── omap.d.ts │ │ │ │ ├── omap.js │ │ │ │ ├── pairs.d.ts │ │ │ │ ├── pairs.js │ │ │ │ ├── schema.d.ts │ │ │ │ ├── schema.js │ │ │ │ ├── set.d.ts │ │ │ │ ├── set.js │ │ │ │ ├── timestamp.d.ts │ │ │ │ └── timestamp.js │ │ ├── stringify │ │ │ ├── foldFlowLines.d.ts │ │ │ ├── foldFlowLines.js │ │ │ ├── stringify.d.ts │ │ │ ├── stringify.js │ │ │ ├── stringifyCollection.d.ts │ │ │ ├── stringifyCollection.js │ │ │ ├── stringifyComment.d.ts │ │ │ ├── stringifyComment.js │ │ │ ├── stringifyDocument.d.ts │ │ │ ├── stringifyDocument.js │ │ │ ├── stringifyNumber.d.ts │ │ │ ├── stringifyNumber.js │ │ │ ├── stringifyPair.d.ts │ │ │ ├── stringifyPair.js │ │ │ ├── stringifyString.d.ts │ │ │ └── stringifyString.js │ │ ├── test-events.d.ts │ │ ├── test-events.js │ │ ├── util.d.ts │ │ ├── util.js │ │ ├── visit.d.ts │ │ └── visit.js │ │ ├── package.json │ │ └── util.js ├── package-lock.json ├── package.json ├── src │ └── index.ts └── tsconfig.json ├── 11-debug ├── .gitignore ├── .vscode │ └── launch.json ├── package-lock.json ├── package.json ├── src │ ├── index.ts │ └── services │ │ └── email.ts └── tsconfig.json ├── github.txt ├── project-formula-1 └── node-f1 │ ├── .env │ ├── .github │ └── assets │ │ └── blue-saiyan-bg.png │ ├── .gitignore │ ├── README.MD │ ├── package-lock.json │ ├── package.json │ ├── src │ └── server.ts │ └── tsconfig.json ├── projeto-champions ├── .env ├── .gitignore ├── arch │ ├── arch-editavel.tldr │ └── arch.png ├── package-lock.json ├── package.json ├── src │ ├── app.ts │ ├── controllers │ │ ├── clubs-controller.ts │ │ └── players-controller.ts │ ├── data │ │ └── clubs.json │ ├── models │ │ ├── club-model.ts │ │ ├── http-response-model.ts │ │ ├── player-model.ts │ │ └── statistics-model.ts │ ├── repositories │ │ ├── clubs-repository.ts │ │ └── players-repository.ts │ ├── routes.ts │ ├── server.ts │ ├── services │ │ ├── clubs-service.ts │ │ └── players-service.ts │ └── utils │ │ └── http-helper.ts └── tsconfig.json ├── projeto-qrcode ├── .env ├── .gitignore ├── docs │ └── arquitetura.tldr ├── package-lock.json ├── package.json ├── readme.md └── src │ ├── index.js │ ├── prompts-schema │ ├── prompt-schema-main.js │ └── prompt-schema-qrcode.js │ └── services │ ├── password │ ├── create.js │ ├── handle.js │ └── utils │ │ └── permitted-characters.js │ └── qr-code │ ├── create.js │ └── handle.js └── readme.md /.github/assets/footer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/.github/assets/footer.png -------------------------------------------------------------------------------- /.github/assets/logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/.github/assets/logo.webp -------------------------------------------------------------------------------- /01-fundamentos-nodejs/01-helloworld/hello.js: -------------------------------------------------------------------------------- 1 | console.log("hello world! "); 2 | -------------------------------------------------------------------------------- /02-meu-primeiro-projeto/_commands.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/02-meu-primeiro-projeto/_commands.txt -------------------------------------------------------------------------------- /02-meu-primeiro-projeto/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/02-meu-primeiro-projeto/package.json -------------------------------------------------------------------------------- /02-meu-primeiro-projeto/src/index.js: -------------------------------------------------------------------------------- 1 | console.log("olá mundão"); 2 | -------------------------------------------------------------------------------- /03-projeto-mario-kart/docs/bowser.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/03-projeto-mario-kart/docs/bowser.gif -------------------------------------------------------------------------------- /03-projeto-mario-kart/docs/dk.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/03-projeto-mario-kart/docs/dk.gif -------------------------------------------------------------------------------- /03-projeto-mario-kart/docs/header.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/03-projeto-mario-kart/docs/header.gif -------------------------------------------------------------------------------- /03-projeto-mario-kart/docs/luigi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/03-projeto-mario-kart/docs/luigi.gif -------------------------------------------------------------------------------- /03-projeto-mario-kart/docs/mario.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/03-projeto-mario-kart/docs/mario.gif -------------------------------------------------------------------------------- /03-projeto-mario-kart/docs/peach.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/03-projeto-mario-kart/docs/peach.gif -------------------------------------------------------------------------------- /03-projeto-mario-kart/docs/toad.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/03-projeto-mario-kart/docs/toad.gif -------------------------------------------------------------------------------- /03-projeto-mario-kart/docs/yoshi.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/03-projeto-mario-kart/docs/yoshi.gif -------------------------------------------------------------------------------- /03-projeto-mario-kart/extras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/03-projeto-mario-kart/extras.md -------------------------------------------------------------------------------- /03-projeto-mario-kart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/03-projeto-mario-kart/package.json -------------------------------------------------------------------------------- /03-projeto-mario-kart/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/03-projeto-mario-kart/readme.md -------------------------------------------------------------------------------- /03-projeto-mario-kart/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/03-projeto-mario-kart/src/index.js -------------------------------------------------------------------------------- /04-commonjs-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/04-commonjs-modules/package.json -------------------------------------------------------------------------------- /04-commonjs-modules/src/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/04-commonjs-modules/src/main.js -------------------------------------------------------------------------------- /04-commonjs-modules/src/services/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/04-commonjs-modules/src/services/config.js -------------------------------------------------------------------------------- /04-commonjs-modules/src/services/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/04-commonjs-modules/src/services/database.js -------------------------------------------------------------------------------- /04-commonjs-modules/src/services/products.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/04-commonjs-modules/src/services/products.js -------------------------------------------------------------------------------- /05-esm-modules/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/05-esm-modules/package.json -------------------------------------------------------------------------------- /05-esm-modules/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/05-esm-modules/src/index.js -------------------------------------------------------------------------------- /05-esm-modules/src/utils/api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/05-esm-modules/src/utils/api.js -------------------------------------------------------------------------------- /05-esm-modules/src/utils/database.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/05-esm-modules/src/utils/database.js -------------------------------------------------------------------------------- /06-shopee-cart/arquitetura.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/06-shopee-cart/arquitetura.png -------------------------------------------------------------------------------- /06-shopee-cart/documentação.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/06-shopee-cart/documentação.md -------------------------------------------------------------------------------- /06-shopee-cart/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/06-shopee-cart/package.json -------------------------------------------------------------------------------- /06-shopee-cart/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/06-shopee-cart/readme.md -------------------------------------------------------------------------------- /06-shopee-cart/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/06-shopee-cart/src/index.js -------------------------------------------------------------------------------- /06-shopee-cart/src/services/cart.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/06-shopee-cart/src/services/cart.js -------------------------------------------------------------------------------- /06-shopee-cart/src/services/item.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/06-shopee-cart/src/services/item.js -------------------------------------------------------------------------------- /07-npm-packages-basic/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /07-npm-packages-basic/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/07-npm-packages-basic/package-lock.json -------------------------------------------------------------------------------- /07-npm-packages-basic/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/07-npm-packages-basic/package.json -------------------------------------------------------------------------------- /07-npm-packages-basic/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/07-npm-packages-basic/src/index.js -------------------------------------------------------------------------------- /08-npm-scripts/docs/semmantic-script-names.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/08-npm-scripts/docs/semmantic-script-names.md -------------------------------------------------------------------------------- /08-npm-scripts/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/08-npm-scripts/package-lock.json -------------------------------------------------------------------------------- /08-npm-scripts/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/08-npm-scripts/package.json -------------------------------------------------------------------------------- /08-npm-scripts/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/08-npm-scripts/src/index.js -------------------------------------------------------------------------------- /09-npm-enviroment/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/09-npm-enviroment/.env.development -------------------------------------------------------------------------------- /09-npm-enviroment/.env.prod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/09-npm-enviroment/.env.prod -------------------------------------------------------------------------------- /09-npm-enviroment/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | .env -------------------------------------------------------------------------------- /09-npm-enviroment/docs/dotenv.tldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/09-npm-enviroment/docs/dotenv.tldr -------------------------------------------------------------------------------- /09-npm-enviroment/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/09-npm-enviroment/package-lock.json -------------------------------------------------------------------------------- /09-npm-enviroment/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/09-npm-enviroment/package.json -------------------------------------------------------------------------------- /09-npm-enviroment/src/database/data.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/09-npm-enviroment/src/database/data.js -------------------------------------------------------------------------------- /09-npm-enviroment/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/09-npm-enviroment/src/index.js -------------------------------------------------------------------------------- /10-typescript/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /10-typescript/docs/comandos.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/docs/comandos.md -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/esbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/esbuild -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/esbuild.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/esbuild.cmd -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/esbuild.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/esbuild.ps1 -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/glob: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/glob -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/glob.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/glob.cmd -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/glob.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/glob.ps1 -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/node-which: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/node-which -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/node-which.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/node-which.cmd -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/node-which.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/node-which.ps1 -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/rollup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/rollup -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/rollup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/rollup.cmd -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/rollup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/rollup.ps1 -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/sucrase: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/sucrase -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/sucrase-node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/sucrase-node -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/sucrase-node.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/sucrase-node.cmd -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/sucrase-node.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/sucrase-node.ps1 -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/sucrase.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/sucrase.cmd -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/sucrase.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/sucrase.ps1 -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tree-kill: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tree-kill -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tree-kill.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tree-kill.cmd -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tree-kill.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tree-kill.ps1 -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsc -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsc.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsc.cmd -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsc.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsc.ps1 -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsserver: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsserver -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsserver.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsserver.cmd -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsserver.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsserver.ps1 -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsup -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsup-node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsup-node -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsup-node.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsup-node.cmd -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsup-node.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsup-node.ps1 -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsup.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsup.cmd -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsup.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsup.ps1 -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsx -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsx.cmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsx.cmd -------------------------------------------------------------------------------- /10-typescript/node_modules/.bin/tsx.ps1: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.bin/tsx.ps1 -------------------------------------------------------------------------------- /10-typescript/node_modules/.package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/.package-lock.json -------------------------------------------------------------------------------- /10-typescript/node_modules/@isaacs/cliui/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@isaacs/cliui/LICENSE.txt -------------------------------------------------------------------------------- /10-typescript/node_modules/@isaacs/cliui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@isaacs/cliui/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/@isaacs/cliui/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@isaacs/cliui/index.mjs -------------------------------------------------------------------------------- /10-typescript/node_modules/@isaacs/cliui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@isaacs/cliui/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/@nodelib/fs.scandir/out/types/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /10-typescript/node_modules/@nodelib/fs.stat/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@nodelib/fs.stat/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/@nodelib/fs.stat/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@nodelib/fs.stat/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/@nodelib/fs.stat/out/types/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /10-typescript/node_modules/@nodelib/fs.walk/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@nodelib/fs.walk/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/@nodelib/fs.walk/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@nodelib/fs.walk/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/@nodelib/fs.walk/out/types/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /10-typescript/node_modules/@pkgjs/parseargs/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@pkgjs/parseargs/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/@pkgjs/parseargs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@pkgjs/parseargs/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/@pkgjs/parseargs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@pkgjs/parseargs/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/@pkgjs/parseargs/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@pkgjs/parseargs/utils.js -------------------------------------------------------------------------------- /10-typescript/node_modules/@types/estree/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@types/estree/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/@types/estree/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@types/estree/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/@types/estree/flow.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@types/estree/flow.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/@types/estree/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@types/estree/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/@types/estree/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/@types/estree/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/ansi-regex/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ansi-regex/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/ansi-regex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ansi-regex/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/ansi-regex/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ansi-regex/license -------------------------------------------------------------------------------- /10-typescript/node_modules/ansi-regex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ansi-regex/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/ansi-regex/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ansi-regex/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/ansi-styles/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ansi-styles/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/ansi-styles/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ansi-styles/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/ansi-styles/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ansi-styles/license -------------------------------------------------------------------------------- /10-typescript/node_modules/ansi-styles/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ansi-styles/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/ansi-styles/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ansi-styles/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/.jshintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/any-promise/.jshintrc -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/any-promise/.npmignore -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/any-promise/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/any-promise/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/implementation.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./register')().implementation 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/any-promise/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./register')().Promise 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/any-promise/loader.js -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/optional.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/any-promise/optional.js -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/any-promise/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/any-promise/register.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/any-promise/register.js -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register/bluebird.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register/es6-promise.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register/lie.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register/native-promise-only.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register/pinkie.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register/promise.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register/q.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register/q.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/any-promise/register/q.js -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register/rsvp.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register/vow.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/any-promise/register/when.d.ts: -------------------------------------------------------------------------------- 1 | export {} 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/anymatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/anymatch/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/anymatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/anymatch/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/anymatch/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/anymatch/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/anymatch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/anymatch/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/anymatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/anymatch/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/array-union/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/array-union/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/array-union/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/array-union/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/array-union/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/array-union/license -------------------------------------------------------------------------------- /10-typescript/node_modules/array-union/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/array-union/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/array-union/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/array-union/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/balanced-match/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/balanced-match" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /10-typescript/node_modules/balanced-match/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/balanced-match/LICENSE.md -------------------------------------------------------------------------------- /10-typescript/node_modules/balanced-match/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/balanced-match/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/balanced-match/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/balanced-match/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/binary-extensions/index.js: -------------------------------------------------------------------------------- 1 | module.exports = require('./binary-extensions.json'); 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/binary-extensions/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/binary-extensions/license -------------------------------------------------------------------------------- /10-typescript/node_modules/brace-expansion/.github/FUNDING.yml: -------------------------------------------------------------------------------- 1 | tidelift: "npm/brace-expansion" 2 | patreon: juliangruber 3 | -------------------------------------------------------------------------------- /10-typescript/node_modules/brace-expansion/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/brace-expansion/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/brace-expansion/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/brace-expansion/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/brace-expansion/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/brace-expansion/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/braces/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/braces/CHANGELOG.md -------------------------------------------------------------------------------- /10-typescript/node_modules/braces/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/braces/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/braces/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/braces/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/braces/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/braces/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/braces/lib/compile.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/braces/lib/compile.js -------------------------------------------------------------------------------- /10-typescript/node_modules/braces/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/braces/lib/constants.js -------------------------------------------------------------------------------- /10-typescript/node_modules/braces/lib/expand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/braces/lib/expand.js -------------------------------------------------------------------------------- /10-typescript/node_modules/braces/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/braces/lib/parse.js -------------------------------------------------------------------------------- /10-typescript/node_modules/braces/lib/stringify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/braces/lib/stringify.js -------------------------------------------------------------------------------- /10-typescript/node_modules/braces/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/braces/lib/utils.js -------------------------------------------------------------------------------- /10-typescript/node_modules/braces/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/braces/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/bundle-require/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/bundle-require/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/bundle-require/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/bundle-require/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/deno/CAC.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/deno/CAC.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/deno/Command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/deno/Command.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/deno/Option.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/deno/Option.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/deno/deno.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/deno/deno.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/deno/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/deno/index.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/deno/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/deno/utils.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/dist/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/dist/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/dist/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/dist/index.mjs -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/index-compat.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/index-compat.js -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/mod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/mod.js -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/mod.ts: -------------------------------------------------------------------------------- 1 | // For Deno 2 | export * from './deno/index.ts' 3 | -------------------------------------------------------------------------------- /10-typescript/node_modules/cac/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cac/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/chokidar/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/chokidar/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/chokidar/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/chokidar/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/chokidar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/chokidar/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/chokidar/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/chokidar/lib/constants.js -------------------------------------------------------------------------------- /10-typescript/node_modules/chokidar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/chokidar/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/chokidar/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/chokidar/types/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/color-convert/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/color-convert/CHANGELOG.md -------------------------------------------------------------------------------- /10-typescript/node_modules/color-convert/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/color-convert/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/color-convert/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/color-convert/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/color-convert/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/color-convert/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/color-convert/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/color-convert/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/color-convert/route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/color-convert/route.js -------------------------------------------------------------------------------- /10-typescript/node_modules/color-name/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/color-name/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/color-name/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/color-name/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/color-name/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/color-name/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/color-name/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/color-name/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/commander/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/commander/CHANGELOG.md -------------------------------------------------------------------------------- /10-typescript/node_modules/commander/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/commander/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/commander/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/commander/Readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/commander/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/commander/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/commander/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/commander/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/cross-spawn/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cross-spawn/CHANGELOG.md -------------------------------------------------------------------------------- /10-typescript/node_modules/cross-spawn/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cross-spawn/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/cross-spawn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cross-spawn/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/cross-spawn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cross-spawn/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/cross-spawn/lib/enoent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cross-spawn/lib/enoent.js -------------------------------------------------------------------------------- /10-typescript/node_modules/cross-spawn/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cross-spawn/lib/parse.js -------------------------------------------------------------------------------- /10-typescript/node_modules/cross-spawn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/cross-spawn/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/debug/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/debug/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/debug/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/debug/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/debug/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/debug/src/browser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/debug/src/browser.js -------------------------------------------------------------------------------- /10-typescript/node_modules/debug/src/common.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/debug/src/common.js -------------------------------------------------------------------------------- /10-typescript/node_modules/debug/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/debug/src/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/debug/src/node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/debug/src/node.js -------------------------------------------------------------------------------- /10-typescript/node_modules/dir-glob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/dir-glob/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/dir-glob/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/dir-glob/license -------------------------------------------------------------------------------- /10-typescript/node_modules/dir-glob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/dir-glob/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/dir-glob/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/dir-glob/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/eastasianwidth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/eastasianwidth/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/emoji-regex/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/emoji-regex/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/emoji-regex/RGI_Emoji.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/emoji-regex/RGI_Emoji.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/emoji-regex/RGI_Emoji.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/emoji-regex/RGI_Emoji.js -------------------------------------------------------------------------------- /10-typescript/node_modules/emoji-regex/es2015/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/emoji-regex/es2015/text.js -------------------------------------------------------------------------------- /10-typescript/node_modules/emoji-regex/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/emoji-regex/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/emoji-regex/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/emoji-regex/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/emoji-regex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/emoji-regex/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/emoji-regex/text.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/emoji-regex/text.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/emoji-regex/text.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/emoji-regex/text.js -------------------------------------------------------------------------------- /10-typescript/node_modules/esbuild/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/esbuild/LICENSE.md -------------------------------------------------------------------------------- /10-typescript/node_modules/esbuild/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/esbuild/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/esbuild/bin/esbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/esbuild/bin/esbuild -------------------------------------------------------------------------------- /10-typescript/node_modules/esbuild/install.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/esbuild/install.js -------------------------------------------------------------------------------- /10-typescript/node_modules/esbuild/lib/main.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/esbuild/lib/main.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/esbuild/lib/main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/esbuild/lib/main.js -------------------------------------------------------------------------------- /10-typescript/node_modules/esbuild/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/esbuild/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/execa/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/execa/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/execa/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/execa/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/execa/lib/command.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/execa/lib/command.js -------------------------------------------------------------------------------- /10-typescript/node_modules/execa/lib/error.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/execa/lib/error.js -------------------------------------------------------------------------------- /10-typescript/node_modules/execa/lib/kill.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/execa/lib/kill.js -------------------------------------------------------------------------------- /10-typescript/node_modules/execa/lib/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/execa/lib/promise.js -------------------------------------------------------------------------------- /10-typescript/node_modules/execa/lib/stdio.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/execa/lib/stdio.js -------------------------------------------------------------------------------- /10-typescript/node_modules/execa/lib/stream.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/execa/lib/stream.js -------------------------------------------------------------------------------- /10-typescript/node_modules/execa/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/execa/license -------------------------------------------------------------------------------- /10-typescript/node_modules/execa/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/execa/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/execa/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/execa/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/fast-glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fast-glob/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/fast-glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fast-glob/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/fast-glob/out/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fast-glob/out/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/fast-glob/out/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fast-glob/out/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/fast-glob/out/settings.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fast-glob/out/settings.js -------------------------------------------------------------------------------- /10-typescript/node_modules/fast-glob/out/types/index.js: -------------------------------------------------------------------------------- 1 | "use strict"; 2 | Object.defineProperty(exports, "__esModule", { value: true }); 3 | -------------------------------------------------------------------------------- /10-typescript/node_modules/fast-glob/out/utils/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fast-glob/out/utils/fs.js -------------------------------------------------------------------------------- /10-typescript/node_modules/fast-glob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fast-glob/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/fastq/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fastq/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/fastq/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fastq/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/fastq/bench.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fastq/bench.js -------------------------------------------------------------------------------- /10-typescript/node_modules/fastq/example.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fastq/example.js -------------------------------------------------------------------------------- /10-typescript/node_modules/fastq/example.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fastq/example.mjs -------------------------------------------------------------------------------- /10-typescript/node_modules/fastq/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fastq/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/fastq/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fastq/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/fastq/queue.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fastq/queue.js -------------------------------------------------------------------------------- /10-typescript/node_modules/fastq/test/example.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fastq/test/example.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/fastq/test/promise.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fastq/test/promise.js -------------------------------------------------------------------------------- /10-typescript/node_modules/fastq/test/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fastq/test/test.js -------------------------------------------------------------------------------- /10-typescript/node_modules/fastq/test/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fastq/test/tsconfig.json -------------------------------------------------------------------------------- /10-typescript/node_modules/fill-range/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fill-range/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/fill-range/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fill-range/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/fill-range/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fill-range/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/fill-range/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/fill-range/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/foreground-child/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/foreground-child/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/foreground-child/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/foreground-child/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/foreground-child/dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/foreground-child/dist/mjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/foreground-child/node_modules/signal-exit/dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/foreground-child/node_modules/signal-exit/dist/mjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/get-stream/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/get-stream/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/get-stream/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/get-stream/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/get-stream/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/get-stream/license -------------------------------------------------------------------------------- /10-typescript/node_modules/get-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/get-stream/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/get-stream/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/get-stream/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/get-tsconfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/get-tsconfig/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/get-tsconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/get-tsconfig/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/get-tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/get-tsconfig/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/glob-parent/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob-parent/CHANGELOG.md -------------------------------------------------------------------------------- /10-typescript/node_modules/glob-parent/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob-parent/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/glob-parent/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob-parent/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/glob-parent/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob-parent/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/glob-parent/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob-parent/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/commonjs/glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/commonjs/glob.js -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/commonjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/bin.d.mts: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | export {}; 3 | //# sourceMappingURL=bin.d.mts.map -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/bin.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/bin.mjs -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/bin.mjs.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/bin.mjs.map -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/glob.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/glob.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/glob.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/glob.js -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/glob.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/glob.js.map -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/has-magic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/has-magic.js -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/ignore.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/ignore.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/ignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/ignore.js -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/index.js.map: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/index.js.map -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/pattern.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/pattern.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/pattern.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/pattern.js -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/processor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/processor.js -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/walker.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/walker.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/dist/esm/walker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/dist/esm/walker.js -------------------------------------------------------------------------------- /10-typescript/node_modules/glob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/glob/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/globby/gitignore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/globby/gitignore.js -------------------------------------------------------------------------------- /10-typescript/node_modules/globby/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/globby/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/globby/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/globby/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/globby/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/globby/license -------------------------------------------------------------------------------- /10-typescript/node_modules/globby/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/globby/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/globby/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/globby/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/globby/stream-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/globby/stream-utils.js -------------------------------------------------------------------------------- /10-typescript/node_modules/human-signals/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/human-signals/CHANGELOG.md -------------------------------------------------------------------------------- /10-typescript/node_modules/human-signals/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/human-signals/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/human-signals/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/human-signals/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/human-signals/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/human-signals/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/ignore/LICENSE-MIT: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ignore/LICENSE-MIT -------------------------------------------------------------------------------- /10-typescript/node_modules/ignore/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ignore/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/ignore/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ignore/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/ignore/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ignore/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/ignore/legacy.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ignore/legacy.js -------------------------------------------------------------------------------- /10-typescript/node_modules/ignore/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ignore/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/is-binary-path/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-binary-path/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/is-binary-path/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-binary-path/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/is-binary-path/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-binary-path/license -------------------------------------------------------------------------------- /10-typescript/node_modules/is-binary-path/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-binary-path/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/is-extglob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-extglob/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/is-extglob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-extglob/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/is-extglob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-extglob/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/is-extglob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-extglob/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/is-glob/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-glob/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/is-glob/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-glob/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/is-glob/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-glob/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/is-glob/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-glob/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/is-number/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-number/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/is-number/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-number/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/is-number/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-number/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/is-number/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-number/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/is-stream/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-stream/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/is-stream/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-stream/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/is-stream/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-stream/license -------------------------------------------------------------------------------- /10-typescript/node_modules/is-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-stream/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/is-stream/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/is-stream/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/isexe/.npmignore: -------------------------------------------------------------------------------- 1 | .nyc_output/ 2 | coverage/ 3 | -------------------------------------------------------------------------------- /10-typescript/node_modules/isexe/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/isexe/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/isexe/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/isexe/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/isexe/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/isexe/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/isexe/mode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/isexe/mode.js -------------------------------------------------------------------------------- /10-typescript/node_modules/isexe/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/isexe/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/isexe/test/basic.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/isexe/test/basic.js -------------------------------------------------------------------------------- /10-typescript/node_modules/isexe/windows.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/isexe/windows.js -------------------------------------------------------------------------------- /10-typescript/node_modules/jackspeak/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/jackspeak/LICENSE.md -------------------------------------------------------------------------------- /10-typescript/node_modules/jackspeak/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/jackspeak/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/jackspeak/dist/commonjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /10-typescript/node_modules/jackspeak/dist/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} -------------------------------------------------------------------------------- /10-typescript/node_modules/jackspeak/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/jackspeak/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/joycon/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/joycon/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/joycon/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/joycon/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/joycon/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/joycon/lib/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/joycon/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/joycon/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/joycon/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/joycon/types/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/lilconfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lilconfig/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/lilconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lilconfig/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/lilconfig/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lilconfig/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/lilconfig/src/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lilconfig/src/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/lilconfig/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lilconfig/src/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/lines-and-columns/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lines-and-columns/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/load-tsconfig/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/load-tsconfig/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/load-tsconfig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/load-tsconfig/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/load-tsconfig/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/load-tsconfig/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/lodash.sortby/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lodash.sortby/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/lodash.sortby/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lodash.sortby/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/lodash.sortby/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lodash.sortby/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/lodash.sortby/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lodash.sortby/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/lru-cache/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lru-cache/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/lru-cache/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lru-cache/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/lru-cache/dist/commonjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/lru-cache/dist/esm/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/lru-cache/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/lru-cache/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/merge-stream/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/merge-stream/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/merge-stream/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/merge-stream/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/merge-stream/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/merge-stream/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/merge-stream/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/merge-stream/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/merge2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/merge2/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/merge2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/merge2/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/merge2/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/merge2/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/merge2/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/merge2/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/micromatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/micromatch/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/micromatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/micromatch/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/micromatch/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/micromatch/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/micromatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/micromatch/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/mimic-fn/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mimic-fn/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/mimic-fn/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mimic-fn/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/mimic-fn/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mimic-fn/license -------------------------------------------------------------------------------- /10-typescript/node_modules/mimic-fn/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mimic-fn/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/mimic-fn/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mimic-fn/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/minimatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/minimatch/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/minimatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/minimatch/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/minimatch/dist/cjs/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/minimatch/dist/cjs/ast.js -------------------------------------------------------------------------------- /10-typescript/node_modules/minimatch/dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/minimatch/dist/mjs/ast.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/minimatch/dist/mjs/ast.js -------------------------------------------------------------------------------- /10-typescript/node_modules/minimatch/dist/mjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/minimatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/minimatch/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/minipass/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/minipass/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/minipass/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/minipass/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/minipass/dist/commonjs/package.json: -------------------------------------------------------------------------------- 1 | {"type":"commonjs"} -------------------------------------------------------------------------------- /10-typescript/node_modules/minipass/dist/esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/minipass/dist/esm/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/minipass/dist/esm/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} -------------------------------------------------------------------------------- /10-typescript/node_modules/minipass/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/minipass/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/ms/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ms/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/ms/license.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ms/license.md -------------------------------------------------------------------------------- /10-typescript/node_modules/ms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ms/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/ms/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/ms/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/mz/HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mz/HISTORY.md -------------------------------------------------------------------------------- /10-typescript/node_modules/mz/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mz/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/mz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mz/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/mz/child_process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mz/child_process.js -------------------------------------------------------------------------------- /10-typescript/node_modules/mz/crypto.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mz/crypto.js -------------------------------------------------------------------------------- /10-typescript/node_modules/mz/dns.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mz/dns.js -------------------------------------------------------------------------------- /10-typescript/node_modules/mz/fs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mz/fs.js -------------------------------------------------------------------------------- /10-typescript/node_modules/mz/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mz/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/mz/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mz/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/mz/readline.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mz/readline.js -------------------------------------------------------------------------------- /10-typescript/node_modules/mz/zlib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/mz/zlib.js -------------------------------------------------------------------------------- /10-typescript/node_modules/normalize-path/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/normalize-path/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/normalize-path/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/normalize-path/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/normalize-path/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/normalize-path/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/npm-run-path/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/npm-run-path/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/npm-run-path/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/npm-run-path/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/npm-run-path/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/npm-run-path/license -------------------------------------------------------------------------------- /10-typescript/node_modules/npm-run-path/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/npm-run-path/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/npm-run-path/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/npm-run-path/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/object-assign/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/object-assign/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/object-assign/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/object-assign/license -------------------------------------------------------------------------------- /10-typescript/node_modules/object-assign/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/object-assign/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/object-assign/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/object-assign/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/onetime/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/onetime/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/onetime/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/onetime/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/onetime/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/onetime/license -------------------------------------------------------------------------------- /10-typescript/node_modules/onetime/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/onetime/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/onetime/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/onetime/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/path-key/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-key/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/path-key/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-key/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/path-key/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-key/license -------------------------------------------------------------------------------- /10-typescript/node_modules/path-key/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-key/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/path-key/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-key/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/path-scurry/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-scurry/LICENSE.md -------------------------------------------------------------------------------- /10-typescript/node_modules/path-scurry/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-scurry/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/path-scurry/dist/cjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "commonjs" 3 | } 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/path-scurry/dist/mjs/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/path-scurry/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-scurry/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/path-type/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-type/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/path-type/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-type/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/path-type/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-type/license -------------------------------------------------------------------------------- /10-typescript/node_modules/path-type/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-type/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/path-type/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/path-type/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/picomatch/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/picomatch/CHANGELOG.md -------------------------------------------------------------------------------- /10-typescript/node_modules/picomatch/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/picomatch/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/picomatch/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/picomatch/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/picomatch/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | 3 | module.exports = require('./lib/picomatch'); 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/picomatch/lib/constants.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/picomatch/lib/constants.js -------------------------------------------------------------------------------- /10-typescript/node_modules/picomatch/lib/parse.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/picomatch/lib/parse.js -------------------------------------------------------------------------------- /10-typescript/node_modules/picomatch/lib/picomatch.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/picomatch/lib/picomatch.js -------------------------------------------------------------------------------- /10-typescript/node_modules/picomatch/lib/scan.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/picomatch/lib/scan.js -------------------------------------------------------------------------------- /10-typescript/node_modules/picomatch/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/picomatch/lib/utils.js -------------------------------------------------------------------------------- /10-typescript/node_modules/picomatch/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/picomatch/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/pirates/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/pirates/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/pirates/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/pirates/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/pirates/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/pirates/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/pirates/lib/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/pirates/lib/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/pirates/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/pirates/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/punycode/LICENSE-MIT.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/punycode/LICENSE-MIT.txt -------------------------------------------------------------------------------- /10-typescript/node_modules/punycode/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/punycode/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/punycode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/punycode/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/punycode/punycode.es6.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/punycode/punycode.es6.js -------------------------------------------------------------------------------- /10-typescript/node_modules/punycode/punycode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/punycode/punycode.js -------------------------------------------------------------------------------- /10-typescript/node_modules/queue-microtask/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/queue-microtask/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/queue-microtask/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/queue-microtask/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/queue-microtask/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/queue-microtask/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/queue-microtask/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/queue-microtask/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/readdirp/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/readdirp/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/readdirp/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/readdirp/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/readdirp/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/readdirp/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/readdirp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/readdirp/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/readdirp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/readdirp/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/resolve-from/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/resolve-from/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/resolve-from/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/resolve-from/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/resolve-from/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/resolve-from/license -------------------------------------------------------------------------------- /10-typescript/node_modules/resolve-from/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/resolve-from/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/resolve-from/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/resolve-from/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/resolve-pkg-maps/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/resolve-pkg-maps/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/resolve-pkg-maps/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/resolve-pkg-maps/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/reusify/.coveralls.yml: -------------------------------------------------------------------------------- 1 | repo_token: yIxhFqtaaz5iGVYfie9mODehFYogm8S8L 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/reusify/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/reusify/.travis.yml -------------------------------------------------------------------------------- /10-typescript/node_modules/reusify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/reusify/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/reusify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/reusify/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/reusify/benchmarks/fib.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/reusify/benchmarks/fib.js -------------------------------------------------------------------------------- /10-typescript/node_modules/reusify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/reusify/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/reusify/reusify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/reusify/reusify.js -------------------------------------------------------------------------------- /10-typescript/node_modules/reusify/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/reusify/test.js -------------------------------------------------------------------------------- /10-typescript/node_modules/rollup/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/rollup/LICENSE.md -------------------------------------------------------------------------------- /10-typescript/node_modules/rollup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/rollup/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/rollup/dist/bin/rollup: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/rollup/dist/bin/rollup -------------------------------------------------------------------------------- /10-typescript/node_modules/rollup/dist/es/package.json: -------------------------------------------------------------------------------- 1 | {"type":"module"} -------------------------------------------------------------------------------- /10-typescript/node_modules/rollup/dist/es/parseAst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/rollup/dist/es/parseAst.js -------------------------------------------------------------------------------- /10-typescript/node_modules/rollup/dist/es/rollup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/rollup/dist/es/rollup.js -------------------------------------------------------------------------------- /10-typescript/node_modules/rollup/dist/native.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/rollup/dist/native.js -------------------------------------------------------------------------------- /10-typescript/node_modules/rollup/dist/parseAst.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/rollup/dist/parseAst.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/rollup/dist/parseAst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/rollup/dist/parseAst.js -------------------------------------------------------------------------------- /10-typescript/node_modules/rollup/dist/rollup.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/rollup/dist/rollup.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/rollup/dist/rollup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/rollup/dist/rollup.js -------------------------------------------------------------------------------- /10-typescript/node_modules/rollup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/rollup/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/run-parallel/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/run-parallel/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/run-parallel/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/run-parallel/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/run-parallel/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/run-parallel/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/run-parallel/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/run-parallel/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/shebang-command/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/shebang-command/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/shebang-command/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/shebang-command/license -------------------------------------------------------------------------------- /10-typescript/node_modules/shebang-command/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/shebang-command/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/shebang-regex/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/shebang-regex/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/shebang-regex/index.js: -------------------------------------------------------------------------------- 1 | 'use strict'; 2 | module.exports = /^#!(.*)/; 3 | -------------------------------------------------------------------------------- /10-typescript/node_modules/shebang-regex/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/shebang-regex/license -------------------------------------------------------------------------------- /10-typescript/node_modules/shebang-regex/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/shebang-regex/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/shebang-regex/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/shebang-regex/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/signal-exit/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/signal-exit/LICENSE.txt -------------------------------------------------------------------------------- /10-typescript/node_modules/signal-exit/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/signal-exit/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/signal-exit/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/signal-exit/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/signal-exit/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/signal-exit/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/signal-exit/signals.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/signal-exit/signals.js -------------------------------------------------------------------------------- /10-typescript/node_modules/slash/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/slash/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/slash/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/slash/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/slash/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/slash/license -------------------------------------------------------------------------------- /10-typescript/node_modules/slash/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/slash/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/slash/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/slash/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/source-map/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/source-map/CHANGELOG.md -------------------------------------------------------------------------------- /10-typescript/node_modules/source-map/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/source-map/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/source-map/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/source-map/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/source-map/lib/base64.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/source-map/lib/base64.js -------------------------------------------------------------------------------- /10-typescript/node_modules/source-map/lib/url.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/source-map/lib/url.js -------------------------------------------------------------------------------- /10-typescript/node_modules/source-map/lib/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/source-map/lib/util.js -------------------------------------------------------------------------------- /10-typescript/node_modules/source-map/lib/wasm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/source-map/lib/wasm.js -------------------------------------------------------------------------------- /10-typescript/node_modules/source-map/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/source-map/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/source-map/source-map.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/source-map/source-map.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/source-map/source-map.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/source-map/source-map.js -------------------------------------------------------------------------------- /10-typescript/node_modules/string-width-cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/string-width-cjs/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/string-width-cjs/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/string-width-cjs/license -------------------------------------------------------------------------------- /10-typescript/node_modules/string-width-cjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/string-width-cjs/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/string-width/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/string-width/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/string-width/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/string-width/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/string-width/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/string-width/license -------------------------------------------------------------------------------- /10-typescript/node_modules/string-width/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/string-width/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/string-width/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/string-width/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/strip-ansi-cjs/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/strip-ansi-cjs/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/strip-ansi-cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/strip-ansi-cjs/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/strip-ansi-cjs/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/strip-ansi-cjs/license -------------------------------------------------------------------------------- /10-typescript/node_modules/strip-ansi-cjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/strip-ansi-cjs/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/strip-ansi/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/strip-ansi/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/strip-ansi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/strip-ansi/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/strip-ansi/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/strip-ansi/license -------------------------------------------------------------------------------- /10-typescript/node_modules/strip-ansi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/strip-ansi/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/strip-ansi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/strip-ansi/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/bin/sucrase: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | 3 | require("../dist/cli").default(); 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/bin/sucrase-node: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/bin/sucrase-node -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/dist/Options.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/dist/Options.js -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/dist/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/dist/cli.js -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/dist/esm/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/dist/esm/cli.js -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/dist/esm/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/dist/esm/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/dist/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/dist/register.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/dist/register.js -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/dist/types/cli.d.ts: -------------------------------------------------------------------------------- 1 | export default function run(): void; 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/dist/types/parser/tokenizer/readWordTree.d.ts: -------------------------------------------------------------------------------- 1 | export declare const READ_WORD_TREE: Int32Array; 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/register/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/register/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/register/js.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/register/js.js -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/register/jsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/register/jsx.js -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/register/ts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/register/ts.js -------------------------------------------------------------------------------- /10-typescript/node_modules/sucrase/register/tsx.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/sucrase/register/tsx.js -------------------------------------------------------------------------------- /10-typescript/node_modules/thenify-all/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/thenify-all/History.md -------------------------------------------------------------------------------- /10-typescript/node_modules/thenify-all/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/thenify-all/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/thenify-all/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/thenify-all/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/thenify-all/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/thenify-all/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/thenify-all/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/thenify-all/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/thenify/History.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/thenify/History.md -------------------------------------------------------------------------------- /10-typescript/node_modules/thenify/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/thenify/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/thenify/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/thenify/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/thenify/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/thenify/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/thenify/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/thenify/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/to-regex-range/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/to-regex-range/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/to-regex-range/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/to-regex-range/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/to-regex-range/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/to-regex-range/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/tr46/LICENSE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tr46/LICENSE.md -------------------------------------------------------------------------------- /10-typescript/node_modules/tr46/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tr46/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/tr46/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tr46/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/tr46/lib/mappingTable.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tr46/lib/mappingTable.json -------------------------------------------------------------------------------- /10-typescript/node_modules/tr46/lib/regexes.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tr46/lib/regexes.js -------------------------------------------------------------------------------- /10-typescript/node_modules/tr46/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tr46/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/tree-kill/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tree-kill/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/tree-kill/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tree-kill/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/tree-kill/cli.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tree-kill/cli.js -------------------------------------------------------------------------------- /10-typescript/node_modules/tree-kill/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tree-kill/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/tree-kill/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tree-kill/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/tree-kill/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tree-kill/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsup/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsup/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/assets/cjs_shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsup/assets/cjs_shims.js -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/assets/esm_shims.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsup/assets/esm_shims.js -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/assets/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "sideEffects": false 3 | } 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/dist/cli-default.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsup/dist/cli-default.js -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/dist/cli-main.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsup/dist/cli-main.js -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/dist/cli-node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsup/dist/cli-node.js -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsup/dist/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsup/dist/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/dist/rollup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsup/dist/rollup.js -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsup/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/tsup/schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsup/schema.json -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/cjs/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/cjs/index.cjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/cjs/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/cjs/index.mjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/cli.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/cli.cjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/cli.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/cli.mjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/esm/index.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/esm/index.cjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/esm/index.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/esm/index.mjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/loader.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/loader.cjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/loader.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/loader.mjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/package-68fc26ee.mjs: -------------------------------------------------------------------------------- 1 | var r="4.7.1";export{r as v}; 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/package-afa28eaf.cjs: -------------------------------------------------------------------------------- 1 | "use strict";var r="4.7.1";exports.version=r; 2 | -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/preflight.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/preflight.cjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/preflight.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/preflight.mjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/repl.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/repl.cjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/repl.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/repl.mjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/source-map.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/source-map.cjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/dist/source-map.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/dist/source-map.mjs -------------------------------------------------------------------------------- /10-typescript/node_modules/tsx/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/tsx/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/typescript/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/typescript/LICENSE.txt -------------------------------------------------------------------------------- /10-typescript/node_modules/typescript/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/typescript/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/typescript/SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/typescript/SECURITY.md -------------------------------------------------------------------------------- /10-typescript/node_modules/typescript/bin/tsc: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/tsc.js') 3 | -------------------------------------------------------------------------------- /10-typescript/node_modules/typescript/bin/tsserver: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env node 2 | require('../lib/tsserver.js') 3 | -------------------------------------------------------------------------------- /10-typescript/node_modules/typescript/lib/lib.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/typescript/lib/lib.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/typescript/lib/tsc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/typescript/lib/tsc.js -------------------------------------------------------------------------------- /10-typescript/node_modules/typescript/lib/tsserver.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/typescript/lib/tsserver.js -------------------------------------------------------------------------------- /10-typescript/node_modules/typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/typescript/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/whatwg-url/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/whatwg-url/LICENSE.txt -------------------------------------------------------------------------------- /10-typescript/node_modules/whatwg-url/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/whatwg-url/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/whatwg-url/lib/URL-impl.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/whatwg-url/lib/URL-impl.js -------------------------------------------------------------------------------- /10-typescript/node_modules/whatwg-url/lib/URL.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/whatwg-url/lib/URL.js -------------------------------------------------------------------------------- /10-typescript/node_modules/whatwg-url/lib/infra.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/whatwg-url/lib/infra.js -------------------------------------------------------------------------------- /10-typescript/node_modules/whatwg-url/lib/utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/whatwg-url/lib/utils.js -------------------------------------------------------------------------------- /10-typescript/node_modules/whatwg-url/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/whatwg-url/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/which/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/which/CHANGELOG.md -------------------------------------------------------------------------------- /10-typescript/node_modules/which/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/which/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/which/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/which/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/which/bin/node-which: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/which/bin/node-which -------------------------------------------------------------------------------- /10-typescript/node_modules/which/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/which/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/which/which.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/which/which.js -------------------------------------------------------------------------------- /10-typescript/node_modules/wrap-ansi-cjs/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/wrap-ansi-cjs/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/wrap-ansi-cjs/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/wrap-ansi-cjs/license -------------------------------------------------------------------------------- /10-typescript/node_modules/wrap-ansi-cjs/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/wrap-ansi-cjs/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/wrap-ansi-cjs/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/wrap-ansi-cjs/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/wrap-ansi/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/wrap-ansi/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/wrap-ansi/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/wrap-ansi/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/wrap-ansi/license: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/wrap-ansi/license -------------------------------------------------------------------------------- /10-typescript/node_modules/wrap-ansi/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/wrap-ansi/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/wrap-ansi/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/wrap-ansi/readme.md -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/LICENSE -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/README.md -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/browser/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/browser/dist/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/browser/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/browser/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/browser/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "type": "module" 3 | } 4 | -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/errors.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/errors.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/errors.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/errors.js -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/index.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/index.js -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/log.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/log.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/log.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/log.js -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/nodes/Node.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/nodes/Node.js -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/nodes/Pair.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/nodes/Pair.js -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/nodes/toJS.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/nodes/toJS.js -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/options.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/options.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/parse/cst.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/parse/cst.js -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/public-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/public-api.js -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/util.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/util.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/util.js -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/visit.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/visit.d.ts -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/dist/visit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/dist/visit.js -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/package.json -------------------------------------------------------------------------------- /10-typescript/node_modules/yaml/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/node_modules/yaml/util.js -------------------------------------------------------------------------------- /10-typescript/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/package-lock.json -------------------------------------------------------------------------------- /10-typescript/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/package.json -------------------------------------------------------------------------------- /10-typescript/src/index.ts: -------------------------------------------------------------------------------- 1 | console.log("hello felipão") 2 | -------------------------------------------------------------------------------- /10-typescript/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/10-typescript/tsconfig.json -------------------------------------------------------------------------------- /11-debug/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /11-debug/.vscode/launch.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/11-debug/.vscode/launch.json -------------------------------------------------------------------------------- /11-debug/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/11-debug/package-lock.json -------------------------------------------------------------------------------- /11-debug/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/11-debug/package.json -------------------------------------------------------------------------------- /11-debug/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/11-debug/src/index.ts -------------------------------------------------------------------------------- /11-debug/src/services/email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/11-debug/src/services/email.ts -------------------------------------------------------------------------------- /11-debug/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/11-debug/tsconfig.json -------------------------------------------------------------------------------- /github.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/github.txt -------------------------------------------------------------------------------- /project-formula-1/node-f1/.env: -------------------------------------------------------------------------------- 1 | PORT=3333 -------------------------------------------------------------------------------- /project-formula-1/node-f1/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ 2 | -------------------------------------------------------------------------------- /project-formula-1/node-f1/README.MD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/project-formula-1/node-f1/README.MD -------------------------------------------------------------------------------- /project-formula-1/node-f1/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/project-formula-1/node-f1/package-lock.json -------------------------------------------------------------------------------- /project-formula-1/node-f1/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/project-formula-1/node-f1/package.json -------------------------------------------------------------------------------- /project-formula-1/node-f1/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/project-formula-1/node-f1/src/server.ts -------------------------------------------------------------------------------- /project-formula-1/node-f1/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/project-formula-1/node-f1/tsconfig.json -------------------------------------------------------------------------------- /projeto-champions/.env: -------------------------------------------------------------------------------- 1 | PORT=3333 -------------------------------------------------------------------------------- /projeto-champions/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /projeto-champions/arch/arch-editavel.tldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/arch/arch-editavel.tldr -------------------------------------------------------------------------------- /projeto-champions/arch/arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/arch/arch.png -------------------------------------------------------------------------------- /projeto-champions/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/package-lock.json -------------------------------------------------------------------------------- /projeto-champions/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/package.json -------------------------------------------------------------------------------- /projeto-champions/src/app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/src/app.ts -------------------------------------------------------------------------------- /projeto-champions/src/data/clubs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/src/data/clubs.json -------------------------------------------------------------------------------- /projeto-champions/src/models/club-model.ts: -------------------------------------------------------------------------------- 1 | export interface ClubModel { 2 | id: number; 3 | name: string; 4 | } 5 | -------------------------------------------------------------------------------- /projeto-champions/src/models/http-response-model.ts: -------------------------------------------------------------------------------- 1 | export interface HttpResponse { 2 | statusCode: number; 3 | body: any; 4 | } 5 | -------------------------------------------------------------------------------- /projeto-champions/src/models/player-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/src/models/player-model.ts -------------------------------------------------------------------------------- /projeto-champions/src/models/statistics-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/src/models/statistics-model.ts -------------------------------------------------------------------------------- /projeto-champions/src/routes.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/src/routes.ts -------------------------------------------------------------------------------- /projeto-champions/src/server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/src/server.ts -------------------------------------------------------------------------------- /projeto-champions/src/services/clubs-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/src/services/clubs-service.ts -------------------------------------------------------------------------------- /projeto-champions/src/services/players-service.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/src/services/players-service.ts -------------------------------------------------------------------------------- /projeto-champions/src/utils/http-helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/src/utils/http-helper.ts -------------------------------------------------------------------------------- /projeto-champions/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-champions/tsconfig.json -------------------------------------------------------------------------------- /projeto-qrcode/.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-qrcode/.env -------------------------------------------------------------------------------- /projeto-qrcode/.gitignore: -------------------------------------------------------------------------------- 1 | node_modules/ -------------------------------------------------------------------------------- /projeto-qrcode/docs/arquitetura.tldr: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-qrcode/docs/arquitetura.tldr -------------------------------------------------------------------------------- /projeto-qrcode/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-qrcode/package-lock.json -------------------------------------------------------------------------------- /projeto-qrcode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-qrcode/package.json -------------------------------------------------------------------------------- /projeto-qrcode/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-qrcode/readme.md -------------------------------------------------------------------------------- /projeto-qrcode/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-qrcode/src/index.js -------------------------------------------------------------------------------- /projeto-qrcode/src/services/password/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-qrcode/src/services/password/create.js -------------------------------------------------------------------------------- /projeto-qrcode/src/services/password/handle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-qrcode/src/services/password/handle.js -------------------------------------------------------------------------------- /projeto-qrcode/src/services/qr-code/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-qrcode/src/services/qr-code/create.js -------------------------------------------------------------------------------- /projeto-qrcode/src/services/qr-code/handle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/projeto-qrcode/src/services/qr-code/handle.js -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/digitalinnovationone/formacao-nodejs/HEAD/readme.md --------------------------------------------------------------------------------