valaxy-theme-yun 0.7.6 → 0.7.7

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 (2) hide show
  1. package/package.json +2 -2
  2. package/tsconfig.json +27 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "valaxy-theme-yun",
3
- "version": "0.7.6",
3
+ "version": "0.7.7",
4
4
  "author": {
5
5
  "email": "me@yunyoujun.cn",
6
6
  "name": "YunYouJun",
@@ -26,7 +26,7 @@
26
26
  "@iconify-json/simple-icons": "^1.1.19"
27
27
  },
28
28
  "devDependencies": {
29
- "valaxy": "0.7.6"
29
+ "valaxy": "0.7.7"
30
30
  },
31
31
  "scripts": {
32
32
  "build": "rimraf dist && tsup",
package/tsconfig.json ADDED
@@ -0,0 +1,27 @@
1
+ {
2
+ // we need tsconfig.json to compile without
3
+ // error: This is likely not portable. A type annotation is necessary.
4
+ "compilerOptions": {
5
+ "allowJs": true,
6
+ "baseUrl": ".",
7
+ "module": "ESNext",
8
+ "target": "ESNext",
9
+ "lib": ["DOM", "ESNext"],
10
+ "strict": true,
11
+ "esModuleInterop": true,
12
+ "jsx": "preserve",
13
+ "skipLibCheck": true,
14
+ "moduleResolution": "node",
15
+ "resolveJsonModule": true,
16
+ "noUnusedLocals": true,
17
+ "strictNullChecks": true,
18
+ "forceConsistentCasingInFileNames": true,
19
+ "types": [
20
+ "vite/client",
21
+ "vue/ref-macros",
22
+ "vite-plugin-pages/client",
23
+ "vite-plugin-vue-layouts/client"
24
+ ]
25
+ },
26
+ "exclude": ["**/dist/**", "node_modules"]
27
+ }