formue 0.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/README.md +46 -0
- package/dist/favicon.ico +0 -0
- package/dist/formue.js +3922 -0
- package/dist/formue.umd.cjs +27 -0
- package/package.json +50 -0
package/README.md
ADDED
@@ -0,0 +1,46 @@
|
|
1
|
+
# formue
|
2
|
+
|
3
|
+
This template should help get you started developing with Vue 3 in Vite.
|
4
|
+
|
5
|
+
## Recommended IDE Setup
|
6
|
+
|
7
|
+
[VSCode](https://code.visualstudio.com/) + [Volar](https://marketplace.visualstudio.com/items?itemName=Vue.volar) (and disable Vetur) + [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin).
|
8
|
+
|
9
|
+
## Type Support for `.vue` Imports in TS
|
10
|
+
|
11
|
+
TypeScript cannot handle type information for `.vue` imports by default, so we replace the `tsc` CLI with `vue-tsc` for type checking. In editors, we need [TypeScript Vue Plugin (Volar)](https://marketplace.visualstudio.com/items?itemName=Vue.vscode-typescript-vue-plugin) to make the TypeScript language service aware of `.vue` types.
|
12
|
+
|
13
|
+
If the standalone TypeScript plugin doesn't feel fast enough to you, Volar has also implemented a [Take Over Mode](https://github.com/johnsoncodehk/volar/discussions/471#discussioncomment-1361669) that is more performant. You can enable it by the following steps:
|
14
|
+
|
15
|
+
1. Disable the built-in TypeScript Extension
|
16
|
+
1) Run `Extensions: Show Built-in Extensions` from VSCode's command palette
|
17
|
+
2) Find `TypeScript and JavaScript Language Features`, right click and select `Disable (Workspace)`
|
18
|
+
2. Reload the VSCode window by running `Developer: Reload Window` from the command palette.
|
19
|
+
|
20
|
+
## Customize configuration
|
21
|
+
|
22
|
+
See [Vite Configuration Reference](https://vitejs.dev/config/).
|
23
|
+
|
24
|
+
## Project Setup
|
25
|
+
|
26
|
+
```sh
|
27
|
+
npm install
|
28
|
+
```
|
29
|
+
|
30
|
+
### Compile and Hot-Reload for Development
|
31
|
+
|
32
|
+
```sh
|
33
|
+
npm run dev
|
34
|
+
```
|
35
|
+
|
36
|
+
### Type-Check, Compile and Minify for Production
|
37
|
+
|
38
|
+
```sh
|
39
|
+
npm run build
|
40
|
+
```
|
41
|
+
|
42
|
+
### Lint with [ESLint](https://eslint.org/)
|
43
|
+
|
44
|
+
```sh
|
45
|
+
npm run lint
|
46
|
+
```
|
package/dist/favicon.ico
ADDED
Binary file
|