chore: adjust parameters
This commit is contained in:
parent
81399f6037
commit
613acb2652
@ -1,3 +1,3 @@
|
|||||||
node_modules
|
node_modules/
|
||||||
.env
|
.env
|
||||||
packages/app/.env
|
packages/app/.env
|
||||||
|
@ -1,19 +1,10 @@
|
|||||||
# EditorConfig is awesome: http://EditorConfig.org
|
# EditorConfig is awesome: http://EditorConfig.org
|
||||||
|
|
||||||
# top-most EditorConfig file
|
|
||||||
root = true
|
root = true
|
||||||
|
|
||||||
# Unix-style newlines with a newline ending every file
|
|
||||||
[*]
|
|
||||||
end_of_line = lf
|
|
||||||
insert_final_newline = true
|
|
||||||
|
|
||||||
# Matches multiple files with brace expansion notation
|
|
||||||
# Set default charset
|
|
||||||
[*]
|
[*]
|
||||||
charset = utf-8
|
charset = utf-8
|
||||||
|
end_of_line = lf
|
||||||
# Indentation override for all JS under lib directory
|
insert_final_newline = true
|
||||||
[*.{js,ts,json}]
|
|
||||||
indent_style = space
|
indent_style = space
|
||||||
indent_size = 2
|
indent_size = 2
|
||||||
|
@ -10,8 +10,5 @@
|
|||||||
"parserOptions": {
|
"parserOptions": {
|
||||||
"ecmaVersion": 2018,
|
"ecmaVersion": 2018,
|
||||||
"sourceType": "module"
|
"sourceType": "module"
|
||||||
},
|
|
||||||
"rules": {
|
|
||||||
// "quotes": ["error", "single"]
|
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -10,7 +10,7 @@
|
|||||||
]
|
]
|
||||||
},
|
},
|
||||||
"publish": {
|
"publish": {
|
||||||
"allowBranch": ["master", "develop"],
|
"allowBranch": "master",
|
||||||
"ignoreChanges": [
|
"ignoreChanges": [
|
||||||
"*.md"
|
"*.md"
|
||||||
]
|
]
|
||||||
|
@ -1,5 +0,0 @@
|
|||||||
{
|
|
||||||
"watch": ["packages", ".env"],
|
|
||||||
"ext": "ts",
|
|
||||||
"exec": "ts-node ./packages/server/example/index.ts"
|
|
||||||
}
|
|
@ -3,12 +3,11 @@
|
|||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "cd packages/app && npm start",
|
"start": "cd packages/app && npm start",
|
||||||
"db-migrate": "cd packages/app && npm run db-migrate",
|
"start-server": "cd packages/app && nodemon",
|
||||||
"start:app:server": "cd packages/app && nodemon",
|
|
||||||
"start-server": "yarn nodemon",
|
|
||||||
"bootstrap": "lerna bootstrap --no-ci",
|
"bootstrap": "lerna bootstrap --no-ci",
|
||||||
"build": "father-build",
|
"build": "father-build",
|
||||||
"clean": "lerna clean",
|
"clean": "lerna clean",
|
||||||
|
"db-migrate": "cd packages/app && npm run db-migrate",
|
||||||
"db:start": "docker-compose up -d",
|
"db:start": "docker-compose up -d",
|
||||||
"lint": "eslint --ext .ts,.tsx,.js \"packages/*/src/**.@(ts|tsx|js)\" --fix",
|
"lint": "eslint --ext .ts,.tsx,.js \"packages/*/src/**.@(ts|tsx|js)\" --fix",
|
||||||
"test": "npm run lint && jest",
|
"test": "npm run lint && jest",
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
"resolveJsonModule": true,
|
"resolveJsonModule": true,
|
||||||
"esModuleInterop": true,
|
"esModuleInterop": true,
|
||||||
"sourceMap": true,
|
"sourceMap": true,
|
||||||
|
"removeComments": false,
|
||||||
"baseUrl": "./",
|
"baseUrl": "./",
|
||||||
"paths": {
|
"paths": {
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user