* fix(cli): shouldn't load tsconfig when typescript disabled * feat(cli): support remove type when non-typescript * feat: patch `detype` and fix ts extension * test: update * chore: update lock * feat: patch again * fix: missing * chore: update lock * feat: support root option * chore: update lock * feat: transform utils to js by detype * refactor: load jsconfig and remove root option * chore: remove babel/core
15 lines
250 B
Plaintext
15 lines
250 B
Plaintext
// Vitest Snapshot v1, https://vitest.dev/guide/snapshot.html
|
|
|
|
exports[`transformSFC > basic 1`] = `
|
|
"<script setup>
|
|
const array = [1, 2, 3];
|
|
</script>
|
|
|
|
<template>
|
|
<div v-bind=\\"{ array }\\">template</div>
|
|
</template>
|
|
|
|
<style scoped></style>
|
|
"
|
|
`;
|