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.
Files changed (58) hide show
  1. package/package.json +2 -2
  2. package/template-react-rsbuild/.env +3 -0
  3. package/template-react-rsbuild/.env.development +0 -0
  4. package/template-react-rsbuild/.env.production +0 -0
  5. package/template-react-rsbuild/.prettierignore +34 -0
  6. package/template-react-rsbuild/.prettierrc +17 -0
  7. package/template-react-rsbuild/biome.json +102 -0
  8. package/template-react-rsbuild/commitlint.config.js +1 -0
  9. package/template-react-rsbuild/index.en-US.md +0 -0
  10. package/template-react-rsbuild/index.html +7 -0
  11. package/template-react-rsbuild/index.zh-CN.md +0 -0
  12. package/template-react-rsbuild/lefthook.yml +14 -0
  13. package/template-react-rsbuild/package.json +39 -0
  14. package/template-react-rsbuild/postcss.config.mjs +5 -0
  15. package/template-react-rsbuild/public/.gitkeep +0 -0
  16. package/template-react-rsbuild/rsbuild.config.ts +28 -0
  17. package/template-react-rsbuild/src/App.tsx +9 -0
  18. package/template-react-rsbuild/src/components/Loading/PageLoading.tsx +11 -0
  19. package/template-react-rsbuild/src/env.d.ts +1 -0
  20. package/template-react-rsbuild/src/index.tsx +20 -0
  21. package/template-react-rsbuild/src/pages/home/index.tsx +26 -0
  22. package/template-react-rsbuild/src/router/index.tsx +27 -0
  23. package/template-react-rsbuild/src/store/index.ts +0 -0
  24. package/template-react-rsbuild/src/store/modules/user.ts +11 -0
  25. package/template-react-rsbuild/src/styles/index.css +16 -0
  26. package/template-react-rsbuild/src/types/auto-import.d.ts +47 -0
  27. package/template-react-rsbuild/src/utils/request/axios.ts +82 -0
  28. package/template-react-rsbuild/src/utils/request/index.ts +77 -0
  29. package/template-react-rsbuild/tsconfig.json +29 -0
  30. package/template-react-rsbuild/uno.config.ts +8 -0
  31. package/template-vue-rsbuild/.env +3 -0
  32. package/template-vue-rsbuild/.env.development +0 -0
  33. package/template-vue-rsbuild/.env.production +0 -0
  34. package/template-vue-rsbuild/.prettierignore +4 -0
  35. package/template-vue-rsbuild/.prettierrc +17 -0
  36. package/template-vue-rsbuild/biome.json +113 -0
  37. package/template-vue-rsbuild/index.html +7 -0
  38. package/template-vue-rsbuild/package.json +31 -0
  39. package/template-vue-rsbuild/postcss.config.mjs +5 -0
  40. package/template-vue-rsbuild/public/.gitkeep +0 -0
  41. package/template-vue-rsbuild/rsbuild.config.ts +28 -0
  42. package/template-vue-rsbuild/src/App.vue +29 -0
  43. package/template-vue-rsbuild/src/env.d.ts +17 -0
  44. package/template-vue-rsbuild/src/index.css +6 -0
  45. package/template-vue-rsbuild/src/index.ts +15 -0
  46. package/template-vue-rsbuild/src/router/guard/index.tsx +6 -0
  47. package/template-vue-rsbuild/src/router/guard/permissionGuard.ts +8 -0
  48. package/template-vue-rsbuild/src/router/index.tsx +14 -0
  49. package/template-vue-rsbuild/src/router/modules/index.tsx +10 -0
  50. package/template-vue-rsbuild/src/store/index.ts +7 -0
  51. package/template-vue-rsbuild/src/store/modules/user.ts +17 -0
  52. package/template-vue-rsbuild/src/styles/index.css +16 -0
  53. package/template-vue-rsbuild/src/types/auto-import.d.ts +91 -0
  54. package/template-vue-rsbuild/src/utils/request/axios.ts +83 -0
  55. package/template-vue-rsbuild/src/utils/request/index.ts +77 -0
  56. package/template-vue-rsbuild/src/views/home/index.vue +13 -0
  57. package/template-vue-rsbuild/tsconfig.json +29 -0
  58. 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
+ }
@@ -0,0 +1,9 @@
1
+ // uno.config.ts
2
+ import { defineConfig, presetUno } from 'unocss';
3
+
4
+ export default defineConfig({
5
+ content: {
6
+ filesystem: ['**/*.{html,js,ts,jsx,tsx,vue,svelte,astro}'],
7
+ },
8
+ presets: [presetUno()],
9
+ });