1.0.2 β€’ Published 2 years ago

jsconfig-init v1.0.2

Weekly downloads
-
License
SEE LICENSE IN LI...
Repository
github
Last release
2 years ago

jsconfig-init

Turn on transpile-free type hinting for your vanilla JS projects #JSWithTypes

  1. Create a plain JavaScript project
    npm init
  2. Turn on type linting πŸ’ͺ
    # Create a properly configured `jsconfig.json`
    npx jsconfig-init
  3. Profit!

Works with VS Code out-of-the-box, and Vim + ale.

Layout

Your project will look something like this:

.
β”œβ”€β”€ bin/
β”œβ”€β”€ jsconfig.json
β”œβ”€β”€ node_modules/
β”‚   └── @types/
β”‚       └── node/
β”œβ”€β”€ package-lock.json
β”œβ”€β”€ package.json
β”œβ”€β”€ README.md
β”œβ”€β”€ types.js
└── typings/
    └── overrides/
        └── index.d.ts

Inner Workings

  1. Runs tsc --init with these options:
    npx -p typescript@4 -- \
        tsc --init \
        --allowJs --alwaysStrict --checkJs \
        --moduleResolution node \
        --noEmit --noImplicitAny --target es2022 \
        --typeRoots './typings,./node_modules/@types'
  2. Adds the following keys:
    "include": ["*.js", "bin/**/*.js", "lib/**/*.js", "src/**/*.js"]`
    "exclude": ["node_modules"]
  3. Renames tsconfig.json to jsconfig.json \ (and creates some placeholder files and dirs)

Bonus: npm run lint

You may wish to add common script commands for fmt and lint:

npm pkg set scripts.lint="npx -p typescript@4 -- tsc -p ./jsconfig.json"
npm pkg set scripts.fmt="npx -p prettier@2 -- prettier -w '**/*.{js,md}'"

Bonus: Vim Config

It should Just Workβ„’, but if your vim setup is a little custom, you may want to add or modify a line like this:

~/.vimrc:

let g:ale_linters = {
\  'javascript': ['tsserver', 'jshint'],
\  'json': ['fixjson']
\}