create-vite-tsconfigs
v0.4.0
Published
TSConfig files for projects created with create-vite.
Downloads
4
Maintainers
Readme
create-vite-tsconfigs
TSConfig files for projects created with create-vite.
Available TSConfig files
[email protected]
| Template | Package TSConfig file | Source TSConfig file | | ------------------------------------------------------------------------------------------------------------------- | ---------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------- | | template-qwik-ts | tsconfig.app.json | tsconfig.app.json | | template-qwik-ts | tsconfig.node.json | tsconfig.node.json | | template-react-ts | tsconfig.app.json | tsconfig.app.json | | template-react-ts | tsconfig.node.json | tsconfig.node.json | | template-solid-ts | tsconfig.app.json | tsconfig.app.json | | template-solid-ts | tsconfig.node.json | tsconfig.node.json | | template-vue-ts | tsconfig.app.json | tsconfig.app.json | | template-vue-ts | tsconfig.node.json | tsconfig.node.json |
Development
fnm install && fnm use && node --version && npm --version
npm install
npm run lint
npm run format
Delete the following top-level options (if necessary):
"files"
"include"
"exclude"
"references"
template-qwik-ts
npm create [email protected] qwik-template -- --template qwik-ts
cd qwik-template && npm install
npx tsc --project tsconfig.app.json --showConfig > ../qwik/tsconfig.app.json
npx tsc --project tsconfig.node.json --showConfig > ../qwik/tsconfig.node.json
cd ..
template-react-ts
npm create [email protected] react-template -- --template react-ts
cd react-template && npm install
npx tsc --project tsconfig.app.json --showConfig > ../react/tsconfig.app.json
npx tsc --project tsconfig.node.json --showConfig > ../react/tsconfig.node.json
cd ..
template-solid-ts
npm create [email protected] solid-template -- --template solid-ts
cd solid-template && npm install
npx tsc --project tsconfig.app.json --showConfig > ../solid/tsconfig.app.json
npx tsc --project tsconfig.node.json --showConfig > ../solid/tsconfig.node.json
cd ..
template-vue-ts
npm create [email protected] vue-template -- --template vue-ts
cd vue-template && npm install
npx tsc --project tsconfig.app.json --showConfig > ../vue/tsconfig.app.json
npx tsc --project tsconfig.node.json --showConfig > ../vue/tsconfig.node.json
cd ..
Deployment
npm pack --dry-run
npm version patch
npm version minor
npm version major
echo "v$(npm pkg get version | tr -d \")" | pbcopy
- Commit and push changes.
- Create a tag on GitHub Desktop.
- Check GitHub.
npm login
npm publish
- Check npm.