Scaffold the project

so hop to our cloned repo directory

Run cd starwars-ts-names-{NAME}

Run npm init

package.json

{
  "name": "starwars-ts-names-john-doe",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \"Error: no test specified\" && exit 1"
  },
  "author": "YOUR NAME <[email protected]>",
  "license": "MIT"
}

.editorconfig

# top-most EditorConfig file
root = true

# all files
[*]
end_of_line = lf
insert_final_newline = true
indent_style = space
indent_size = 2
charset = utf-8
trim_trailing_whitespace = true
max_line_length = 120

[*.{js,ts}]
quote_type = single
curly_bracket_next_line = false
spaces_around_brackets = inside
indent_brace_style = BSD KNF

# HTML
[*.html]
quote_type = double

.gitignore

*.log
.vscode
.idea
.DS_Store
node_modules

coverage
lib
lib-esm
umd
typings
docs

## this is generated by `npm pack`
*.tgz
package

.npmignore

.*
*.log
**/tsconfig.json
tsconfig.*.json
tslint.json
**/webpack.config.js

__tests__
coverage
node_modules
src
docs

## this is generated by `npm pack`
*.tgz
package

results matching ""

    No results matching ""