quasar-ui-danx 0.0.12 → 0.0.13
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/index.css +5 -0
- package/dist/index.min.css +5 -0
- package/dist/index.rtl.css +5 -0
- package/dist/index.rtl.min.css +5 -0
- package/package.json +1 -1
- package/tsconfig.json +4 -1
package/dist/index.css
ADDED
package/package.json
CHANGED
package/tsconfig.json
CHANGED
@@ -1,5 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"compilerOptions": {
|
3
|
+
"outDir": "./dist",
|
4
|
+
"declaration": true,
|
3
5
|
// Specify ECMAScript target version
|
4
6
|
"target": "esnext",
|
5
7
|
// Specify module code generation
|
@@ -36,6 +38,7 @@
|
|
36
38
|
"types/**/*.d.ts"
|
37
39
|
],
|
38
40
|
"exclude": [
|
39
|
-
"node_modules"
|
41
|
+
"node_modules",
|
42
|
+
"dist"
|
40
43
|
]
|
41
44
|
}
|