routify-ts
v2.0.2
Published
Use Typescript in Routify Starter Template.
Downloads
20
Readme
routify-ts
Use Typescript in Routify Starter Template.
Important
- The script name has been changed from
setup-routify-ts
toroutify-ts
. - This
routify-ts
script designed for Routify Starter Template. Not for Svelte Template. - This documentation is shown for
@sveltech/routify
version2
and above. For versions below2
, please visit v1.0.0. - Please backup your project folder before use
routify-ts convert
command. You don't need to do that forinit
command.
Usage
We have 2 methods to add Typescript support to Routify Starter Template. You can choose whichever one suits your needs.
Support methods:
Create new Routify Starter Template from Scratch
With this method, routify-ts
will create a Routify Starter Template and then add additional configurations for Typescript purposes.
Command
npx routify-ts init <project-name> [routify-init-args]
Arguments
project-name
: Your project name (will be used as the folder name).routify-init-args
: Some arguments will be passed tonpx @sveltech/routify init
command. See Routify Get Started.
Example
npx routify-ts init my-routify-app
Convert existing projects to Typescript
routify-ts
will add additional configurations for Typescript needs to an existing project.
Important - Try to do backups to prevent conflicts in case of conflicts with the configuration that you have made.
Command
npx routify-ts convert [project-directory]
Arguments
project-directory
: Path to your project folder. Default:.
(Current folder).
Example
npx routify-ts convert /home/me/my-routify-app
What we do
- Create new
tsconfig.json
file in root folder. - Add
svelte-check
script & somedevDependencies
topackage.json
. - Rename
src/main.js
tosrc/main.ts
. - Add
lang
property toscript
element insrc/App.svelte
. - Add some plugins & configurations to
rollup.config.js
file. - Create new
extensions.json
file in.vscode
directory.
Tested with @sveltech/[email protected]