Skip to content

Commit 2921216

Browse files
committed
missing files
1 parent 0c41da7 commit 2921216

File tree

4 files changed

+61
-0
lines changed

4 files changed

+61
-0
lines changed

packages/vue-sdk/example/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# example
Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
const base = require("@bucketco/eslint-config/base");
2+
const pluginVue = require("eslint-plugin-vue");
3+
4+
module.exports = [
5+
...base,
6+
{ ignores: ["dist/", "example/"] },
7+
...pluginVue.configs["flat/recommended"],
8+
];

packages/vue-sdk/example/package.json

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
{
2+
"name": "slick-app",
3+
"version": "0.1.0",
4+
"private": true,
5+
"scripts": {
6+
"serve": "vue-cli-service serve",
7+
"build": "vue-cli-service build",
8+
"lint": "vue-cli-service lint"
9+
},
10+
"dependencies": {
11+
"@bucketco/vue-sdk": "^0.1.0",
12+
"core-js": "^3.8.3",
13+
"vue": "^3.2.13"
14+
},
15+
"devDependencies": {
16+
"@typescript-eslint/eslint-plugin": "^5.4.0",
17+
"@typescript-eslint/parser": "^5.4.0",
18+
"@vue/cli-plugin-babel": "~5.0.0",
19+
"@vue/cli-plugin-eslint": "~5.0.0",
20+
"@vue/cli-plugin-typescript": "~5.0.0",
21+
"@vue/cli-service": "~5.0.0",
22+
"@vue/eslint-config-typescript": "^9.1.0",
23+
"eslint": "^7.32.0",
24+
"eslint-plugin-vue": "^8.0.3",
25+
"typescript": "~4.5.5"
26+
}
27+
}
Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
{
2+
"compilerOptions": {
3+
"target": "esnext",
4+
"module": "esnext",
5+
"strict": true,
6+
"jsx": "preserve",
7+
"importHelpers": true,
8+
"moduleResolution": "node",
9+
"skipLibCheck": true,
10+
"esModuleInterop": true,
11+
"allowSyntheticDefaultImports": true,
12+
"sourceMap": true,
13+
"baseUrl": ".",
14+
"types": ["webpack-env"],
15+
"lib": ["esnext", "dom", "dom.iterable", "scripthost"]
16+
},
17+
"include": [
18+
"src/**/*.ts",
19+
"src/**/*.tsx",
20+
"src/**/*.vue",
21+
"tests/**/*.ts",
22+
"tests/**/*.tsx"
23+
],
24+
"exclude": ["node_modules"]
25+
}

0 commit comments

Comments
 (0)