@vuebro/configs 1.1.3 → 1.1.5
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 +9 -16
- package/tsconfig.json +8 -8
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vuebro/configs",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.5",
|
|
4
4
|
"description": "@vuebro/configs",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"vuebro",
|
|
@@ -36,20 +36,22 @@
|
|
|
36
36
|
"import": "./dist/vite.config.js"
|
|
37
37
|
}
|
|
38
38
|
},
|
|
39
|
-
"scripts": {
|
|
40
|
-
"build": "tsc",
|
|
41
|
-
"lint": "eslint ."
|
|
42
|
-
},
|
|
43
39
|
"files": [
|
|
44
40
|
"dist",
|
|
45
41
|
"tsconfig.json"
|
|
46
42
|
],
|
|
47
|
-
"
|
|
43
|
+
"scripts": {
|
|
44
|
+
"build": "tsc",
|
|
45
|
+
"lint": "eslint ."
|
|
46
|
+
},
|
|
47
|
+
"devDependencies": {
|
|
48
|
+
"@eslint/config-helpers": "^0.4.1",
|
|
48
49
|
"@eslint/js": "^9.38.0",
|
|
49
50
|
"@eslint/json": "^0.13.2",
|
|
50
51
|
"@eslint/markdown": "^7.4.0",
|
|
51
52
|
"@prettier/plugin-pug": "^3.4.2",
|
|
52
53
|
"@tsconfig/strictest": "^2.0.6",
|
|
54
|
+
"@types/node": "^24.8.1",
|
|
53
55
|
"@unocss/preset-attributify": "^66.5.4",
|
|
54
56
|
"@unocss/preset-icons": "^66.5.4",
|
|
55
57
|
"@unocss/preset-tagify": "^66.5.4",
|
|
@@ -59,7 +61,6 @@
|
|
|
59
61
|
"@vue/eslint-config-typescript": "^14.6.0",
|
|
60
62
|
"@vue/language-plugin-pug": "^3.1.1",
|
|
61
63
|
"@vue/tsconfig": "^0.8.1",
|
|
62
|
-
"eslint": "^9.38.0",
|
|
63
64
|
"eslint-config-flat-gitignore": "^2.1.0",
|
|
64
65
|
"eslint-config-prettier": "^10.1.8",
|
|
65
66
|
"eslint-import-resolver-typescript": "^4.4.4",
|
|
@@ -73,17 +74,9 @@
|
|
|
73
74
|
"eslint-plugin-regexp": "^2.10.0",
|
|
74
75
|
"eslint-plugin-vue": "^10.5.1",
|
|
75
76
|
"jiti": "^2.6.1",
|
|
76
|
-
"prettier": "^3.6.2",
|
|
77
77
|
"prettier-plugin-packagejson": "^2.5.19",
|
|
78
78
|
"prettier-plugin-tailwindcss": "^0.7.1",
|
|
79
|
-
"pug": "^3.0.3",
|
|
80
|
-
"tsc-alias": "^1.8.16",
|
|
81
|
-
"typescript": "^5.9.3",
|
|
82
79
|
"vite": "^7.1.11",
|
|
83
|
-
"vite-plugin-vue-devtools": "^8.0.3"
|
|
84
|
-
"vue-tsc": "^3.1.1"
|
|
85
|
-
},
|
|
86
|
-
"devDependencies": {
|
|
87
|
-
"@types/node": "^24.8.1"
|
|
80
|
+
"vite-plugin-vue-devtools": "^8.0.3"
|
|
88
81
|
}
|
|
89
82
|
}
|
package/tsconfig.json
CHANGED
|
@@ -1,7 +1,5 @@
|
|
|
1
1
|
{
|
|
2
2
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
3
|
-
"tsc-alias": { "resolveFullPaths": true },
|
|
4
|
-
"vueCompilerOptions": { "plugins": ["@vue/language-plugin-pug"] },
|
|
5
3
|
"extends": [
|
|
6
4
|
"@vue/tsconfig/tsconfig",
|
|
7
5
|
"@vue/tsconfig/tsconfig.dom",
|
|
@@ -9,11 +7,13 @@
|
|
|
9
7
|
"@tsconfig/strictest/tsconfig"
|
|
10
8
|
],
|
|
11
9
|
"compilerOptions": {
|
|
12
|
-
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
|
|
13
|
-
"removeComments": true,
|
|
14
|
-
"emitDeclarationOnly": false,
|
|
15
10
|
"allowImportingTsExtensions": false,
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
|
|
11
|
+
"emitDeclarationOnly": false,
|
|
12
|
+
"outDir": "${configDir}/dist",
|
|
13
|
+
"paths": { "@/*": ["./*"] },
|
|
14
|
+
"removeComments": true,
|
|
15
|
+
"tsBuildInfoFile": "${configDir}/node_modules/.tmp/tsconfig.app.tsbuildinfo"
|
|
16
|
+
},
|
|
17
|
+
"tsc-alias": { "resolveFullPaths": true },
|
|
18
|
+
"vueCompilerOptions": { "plugins": ["@vue/language-plugin-pug"] }
|
|
19
19
|
}
|