This CLI tool create a pure TypeScript project without any additional frameworks such as React or Vue.js.
The stack includes
- pre-commit hooks
- esLint configuration
- prettier
- commit Lint
- git init
- install dependencies
- gitignore
- typescript(ESM)
- typescript alias using @
npx create-pie-app@latest my-pie-app
You can modify any configuration to meet your requirements, such as enabling ES5 support,eslint rules and others
-
npm run dev
-
change .launch.json like these
{
"version": "0.2.0",
"configurations": [
{
"type": "node",
"request": "launch",
"name": "tsup-node debug",
"cwd": "${workspaceFolder}",
"program": "${workspaceFolder}/src/index.ts"
}
]
}