unify-external-plugin-platform 0.0.2-15 → 0.0.2-17
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/.browserslistrc +3 -3
- package/README.md +49 -49
- package/babel.config.js +5 -5
- package/dist/external-plugin.common.js +226 -208
- package/dist/external-plugin.common.js.map +1 -1
- package/dist/external-plugin.css +1 -1
- package/dist/external-plugin.umd.js +226 -208
- package/dist/external-plugin.umd.js.map +1 -1
- package/dist/external-plugin.umd.min.js +2 -2
- package/dist/external-plugin.umd.min.js.map +1 -1
- package/package.json +1 -1
- package/tsconfig.json +42 -42
- package/vue.config.js +14 -2
package/package.json
CHANGED
package/tsconfig.json
CHANGED
@@ -1,42 +1,42 @@
|
|
1
|
-
{
|
2
|
-
"compilerOptions": {
|
3
|
-
"target": "esnext",
|
4
|
-
"module": "esnext",
|
5
|
-
"strict": true,
|
6
|
-
"noImplicitAny": false,
|
7
|
-
"jsx": "preserve",
|
8
|
-
"moduleResolution": "node",
|
9
|
-
"experimentalDecorators": true,
|
10
|
-
"skipLibCheck": true,
|
11
|
-
"esModuleInterop": true,
|
12
|
-
"allowSyntheticDefaultImports": true,
|
13
|
-
"forceConsistentCasingInFileNames": true,
|
14
|
-
"useDefineForClassFields": true,
|
15
|
-
"sourceMap": true,
|
16
|
-
"baseUrl": ".",
|
17
|
-
"types": [
|
18
|
-
"webpack-env"
|
19
|
-
],
|
20
|
-
"paths": {
|
21
|
-
"@/*": [
|
22
|
-
"src/*"
|
23
|
-
]
|
24
|
-
},
|
25
|
-
"lib": [
|
26
|
-
"esnext",
|
27
|
-
"dom",
|
28
|
-
"dom.iterable",
|
29
|
-
"scripthost"
|
30
|
-
]
|
31
|
-
},
|
32
|
-
"include": [
|
33
|
-
"src/**/*.ts",
|
34
|
-
"src/**/*.tsx",
|
35
|
-
"src/**/*.vue",
|
36
|
-
"tests/**/*.ts",
|
37
|
-
"tests/**/*.tsx"
|
38
|
-
],
|
39
|
-
"exclude": [
|
40
|
-
"node_modules"
|
41
|
-
]
|
42
|
-
}
|
1
|
+
{
|
2
|
+
"compilerOptions": {
|
3
|
+
"target": "esnext",
|
4
|
+
"module": "esnext",
|
5
|
+
"strict": true,
|
6
|
+
"noImplicitAny": false,
|
7
|
+
"jsx": "preserve",
|
8
|
+
"moduleResolution": "node",
|
9
|
+
"experimentalDecorators": true,
|
10
|
+
"skipLibCheck": true,
|
11
|
+
"esModuleInterop": true,
|
12
|
+
"allowSyntheticDefaultImports": true,
|
13
|
+
"forceConsistentCasingInFileNames": true,
|
14
|
+
"useDefineForClassFields": true,
|
15
|
+
"sourceMap": true,
|
16
|
+
"baseUrl": ".",
|
17
|
+
"types": [
|
18
|
+
"webpack-env"
|
19
|
+
],
|
20
|
+
"paths": {
|
21
|
+
"@/*": [
|
22
|
+
"src/*"
|
23
|
+
]
|
24
|
+
},
|
25
|
+
"lib": [
|
26
|
+
"esnext",
|
27
|
+
"dom",
|
28
|
+
"dom.iterable",
|
29
|
+
"scripthost"
|
30
|
+
]
|
31
|
+
},
|
32
|
+
"include": [
|
33
|
+
"src/**/*.ts",
|
34
|
+
"src/**/*.tsx",
|
35
|
+
"src/**/*.vue",
|
36
|
+
"tests/**/*.ts",
|
37
|
+
"tests/**/*.tsx"
|
38
|
+
],
|
39
|
+
"exclude": [
|
40
|
+
"node_modules"
|
41
|
+
]
|
42
|
+
}
|
package/vue.config.js
CHANGED
@@ -1,5 +1,17 @@
|
|
1
1
|
const { defineConfig } = require('@vue/cli-service')
|
2
|
+
const path = require('path');
|
3
|
+
module.exports = {
|
4
|
+
configureWebpack: {
|
5
|
+
resolve: {
|
6
|
+
extensions: ['.js', '.ts', '.vue', '.json'],
|
7
|
+
alias: {
|
8
|
+
main: path.resolve(__dirname, '../src'),
|
9
|
+
packages: path.resolve(__dirname, '../packages'),
|
10
|
+
examples: path.resolve(__dirname, '../examples'),
|
11
|
+
},
|
12
|
+
modules: ['node_modules']
|
13
|
+
},
|
14
|
+
}
|
2
15
|
|
3
|
-
module.exports = defineConfig({
|
4
16
|
// transpileDependencies: true
|
5
|
-
}
|
17
|
+
}
|