gitextract_b7opvyms/ ├── .editorconfig ├── .eslintrc ├── .gitattributes ├── .gitignore ├── .prettierrc ├── LICENSE ├── README.md ├── babel.js ├── circle.yml ├── jest.config.js ├── package.json ├── src/ │ ├── babel/ │ │ └── preset.ts │ ├── cli.ts │ ├── compileScript.ts │ ├── compileStyles.ts │ ├── compileTemplate.ts │ ├── importLocal.ts │ ├── index.ts │ ├── script-compilers/ │ │ └── babel.ts │ ├── style-compilers/ │ │ ├── postcss.ts │ │ ├── sass.ts │ │ └── stylus.ts │ ├── types.ts │ ├── utils.ts │ └── writeSFC.ts ├── test/ │ ├── fixture/ │ │ ├── custom-blocks/ │ │ │ └── foo.vue │ │ ├── keep-async-function/ │ │ │ └── foo.vue │ │ ├── keep-ts-block/ │ │ │ └── foo.vue │ │ ├── script-block/ │ │ │ └── foo.vue │ │ └── script-setup/ │ │ └── foo.vue │ └── index.test.ts ├── tsconfig.build.json └── tsconfig.json