-
-
Save jiverson/d296b93f39003ec7533df35357c1674e to your computer and use it in GitHub Desktop.
TypeScript / ESLint / Prettier / Vue 3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
yarn add -D @typescript-eslint/eslint-plugin \ | |
typescript ts-node-dev \ | |
@typescript-eslint/parser @typescript-eslint/eslint-plugin eslint eslint-config-prettier eslint-plugin-prettier eslint-plugin-vue prettier | |
cat > .eslintrc.js <<EOF | |
module.exports = { | |
root: true, | |
env: { | |
node: true, | |
}, | |
parser: "vue-eslint-parser", | |
parserOptions: { | |
parser: "@typescript-eslint/parser", | |
ecmaVersion: 2020, | |
sourceType: "module", | |
}, | |
extends: [ | |
"plugin:@typescript-eslint/recommended", | |
"eslint:recommended", | |
"prettier/@typescript-eslint", | |
"plugin:prettier/recommended", | |
"plugin:vue/vue3-recommended", | |
//"plugin:vue/recommended", | |
"prettier/vue", | |
], | |
plugins: ["prettier", "@typescript-eslint"], | |
rules: { | |
"no-unused-vars": "off", | |
"@typescript-eslint/no-unused-vars-experimental": "error", | |
}, | |
"ignorePatterns": ["dist"], | |
}; | |
EOF | |
cat > .prettierrc.js <<EOF | |
module.exports = { | |
printWidth: 120, | |
semi: true, | |
tabWidth: 2, | |
trailingComma: "all" | |
}; | |
EOF | |
cat > tsconfig.json <<EOF | |
{ | |
"compilerOptions": { | |
"target": "ES5", | |
"module": "CommonJS", | |
"lib": [ | |
"DOM", | |
"ES2020" | |
], | |
"outDir": "dist", | |
"esModuleInterop": true, | |
"sourceMap": true, | |
"declaration": true, | |
"skipLibCheck": true | |
} | |
} | |
EOF |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment