create-bubbles 0.0.7 → 0.0.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +2 -2
- package/template-react-rsbuild/.env +3 -0
- package/template-react-rsbuild/.env.development +0 -0
- package/template-react-rsbuild/.env.production +0 -0
- package/template-react-rsbuild/.prettierignore +34 -0
- package/template-react-rsbuild/.prettierrc +17 -0
- package/template-react-rsbuild/biome.json +102 -0
- package/template-react-rsbuild/commitlint.config.js +1 -0
- package/template-react-rsbuild/index.en-US.md +0 -0
- package/template-react-rsbuild/index.html +7 -0
- package/template-react-rsbuild/index.zh-CN.md +0 -0
- package/template-react-rsbuild/lefthook.yml +14 -0
- package/template-react-rsbuild/package.json +39 -0
- package/template-react-rsbuild/postcss.config.mjs +5 -0
- package/template-react-rsbuild/public/.gitkeep +0 -0
- package/template-react-rsbuild/rsbuild.config.ts +28 -0
- package/template-react-rsbuild/src/App.tsx +9 -0
- package/template-react-rsbuild/src/components/Loading/PageLoading.tsx +11 -0
- package/template-react-rsbuild/src/env.d.ts +1 -0
- package/template-react-rsbuild/src/index.tsx +20 -0
- package/template-react-rsbuild/src/pages/home/index.tsx +26 -0
- package/template-react-rsbuild/src/router/index.tsx +27 -0
- package/template-react-rsbuild/src/store/index.ts +0 -0
- package/template-react-rsbuild/src/store/modules/user.ts +11 -0
- package/template-react-rsbuild/src/styles/index.css +16 -0
- package/template-react-rsbuild/src/types/auto-import.d.ts +47 -0
- package/template-react-rsbuild/src/utils/request/axios.ts +82 -0
- package/template-react-rsbuild/src/utils/request/index.ts +77 -0
- package/template-react-rsbuild/tsconfig.json +29 -0
- package/template-react-rsbuild/uno.config.ts +8 -0
- package/template-vue-rsbuild/.env +3 -0
- package/template-vue-rsbuild/.env.development +0 -0
- package/template-vue-rsbuild/.env.production +0 -0
- package/template-vue-rsbuild/.prettierignore +4 -0
- package/template-vue-rsbuild/.prettierrc +17 -0
- package/template-vue-rsbuild/biome.json +113 -0
- package/template-vue-rsbuild/index.html +7 -0
- package/template-vue-rsbuild/package.json +31 -0
- package/template-vue-rsbuild/postcss.config.mjs +5 -0
- package/template-vue-rsbuild/public/.gitkeep +0 -0
- package/template-vue-rsbuild/rsbuild.config.ts +28 -0
- package/template-vue-rsbuild/src/App.vue +29 -0
- package/template-vue-rsbuild/src/env.d.ts +17 -0
- package/template-vue-rsbuild/src/index.css +6 -0
- package/template-vue-rsbuild/src/index.ts +15 -0
- package/template-vue-rsbuild/src/router/guard/index.tsx +6 -0
- package/template-vue-rsbuild/src/router/guard/permissionGuard.ts +8 -0
- package/template-vue-rsbuild/src/router/index.tsx +14 -0
- package/template-vue-rsbuild/src/router/modules/index.tsx +10 -0
- package/template-vue-rsbuild/src/store/index.ts +7 -0
- package/template-vue-rsbuild/src/store/modules/user.ts +17 -0
- package/template-vue-rsbuild/src/styles/index.css +16 -0
- package/template-vue-rsbuild/src/types/auto-import.d.ts +91 -0
- package/template-vue-rsbuild/src/utils/request/axios.ts +83 -0
- package/template-vue-rsbuild/src/utils/request/index.ts +77 -0
- package/template-vue-rsbuild/src/views/home/index.vue +13 -0
- package/template-vue-rsbuild/tsconfig.json +29 -0
- package/template-vue-rsbuild/uno.config.ts +9 -0
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"compilerOptions": {
|
|
3
|
+
"lib": ["DOM", "ES2020"],
|
|
4
|
+
"jsx": "preserve",
|
|
5
|
+
"target": "ES2020",
|
|
6
|
+
"noEmit": true,
|
|
7
|
+
"skipLibCheck": true,
|
|
8
|
+
"jsxImportSource": "vue",
|
|
9
|
+
"useDefineForClassFields": true,
|
|
10
|
+
|
|
11
|
+
/* modules */
|
|
12
|
+
"module": "ESNext",
|
|
13
|
+
"isolatedModules": true,
|
|
14
|
+
"resolveJsonModule": true,
|
|
15
|
+
"moduleResolution": "Bundler",
|
|
16
|
+
"allowImportingTsExtensions": true,
|
|
17
|
+
|
|
18
|
+
/* type checking */
|
|
19
|
+
"strict": true,
|
|
20
|
+
"noUnusedLocals": true,
|
|
21
|
+
"noUnusedParameters": true,
|
|
22
|
+
|
|
23
|
+
"baseUrl": ".",
|
|
24
|
+
"paths": {
|
|
25
|
+
"@": ["src"]
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
"include": ["src"]
|
|
29
|
+
}
|