Skip to content
Open
Show file tree
Hide file tree
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/package/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
"kleur": "^4.1.5",
"sade": "^1.8.1",
"semver": "^7.5.4",
"svelte2tsx": "~0.7.33"
"svelte2tsx": "~0.7.51"
},
"devDependencies": {
"@sveltejs/vite-plugin-svelte": "catalog:",
Expand Down
4 changes: 4 additions & 0 deletions packages/package/src/cli.js
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ prog
'--tsconfig',
'A path to a tsconfig or jsconfig file. When not provided, searches for the next upper tsconfig/jsconfig in the workspace path.'
)
.option('--incremental', 'Use incremental type generation for faster rebuilds', false)
.option('--tsgo', 'Use TypeScript Go compiler for type generation', false)
.action(async (args) => {
try {
const config = await load_config();
Expand All @@ -51,6 +53,8 @@ prog
preserve_output: args['preserve-output'],
tsconfig: args.tsconfig,
types: args.types,
incremental: args.incremental,
tsgo: args.tsgo,
config
};

Expand Down
Loading
Loading