Skip to content

Commit

Permalink
🎂 Project initialized!
Browse files Browse the repository at this point in the history
  • Loading branch information
oovm committed May 15, 2019
0 parents commit 20bcf2b
Show file tree
Hide file tree
Showing 5 changed files with 68 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .gitignore
@@ -0,0 +1,22 @@
# System
.DS_Store

# IDE
.idea
.vscode
*.iml

# Build
node_modules/
**/static/
**/dist/
**/out/

# log
npm-debug.log
yarn-debug.log
yarn-error.log

# Tools
yarn.lock
package-lock.json
24 changes: 24 additions & 0 deletions package.json
@@ -0,0 +1,24 @@
{
"private": true,
"workspaces": [
"packages/*"
],
"scripts": {
"lint": "tslint **/*.ts --fix && eslint . --fix"
},
"devDependencies": {
"@types/node": "^11.11.0",
"chalk": "^2.4.2",
"commander": "^2.19.0",
"eslint": "^5.15.1",
"eslint-plugin-vue": "^5.0.0",
"semver": "^5.6.0",
"ts-loader": "^5.3.2",
"tslint": "^5.12.0",
"typescript": "^3.2.2"
},
"engines": {
"node": ">= 8.0.0"
},
"dependencies": {}
}
7 changes: 7 additions & 0 deletions tsconfig.base.json
@@ -0,0 +1,7 @@
{
"compilerOptions": {
"declaration": true,
"module": "commonjs",
"target": "esnext"
},
}
8 changes: 8 additions & 0 deletions tsconfig.json
@@ -0,0 +1,8 @@
{
"references": [
{ "path": "./packages/vuepress-plugin-component-container" },
{ "path": "./packages/vuepress-plugin-math" },
{ "path": "./packages/vuepress-theme-vutex" },
],
"files": []
}
7 changes: 7 additions & 0 deletions tslint.json
@@ -0,0 +1,7 @@
{
"rules": {
"semicolon": [true, "never"],
"quotemark": [true, "single", "avoid-escape", "avoid-template"],
"indent": 4
}
}

0 comments on commit 20bcf2b

Please sign in to comment.