This file contains some config files.
Last active
October 1, 2019 10:57
-
-
Save ycmjason/1bec0f7739780baff5ae42288ab3f018 to your computer and use it in GitHub Desktop.
Basic Configs
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
module.exports = { | |
printWidth: 120, | |
semi: true, | |
singleQuote: true, | |
trailingComma: 'all', | |
} |
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
Show hidden characters
{ | |
"compilerOptions": { | |
"baseUrl": ".", | |
"moduleResolution": "node", | |
"resolveJsonModule": true, | |
"esModuleInterop": true, | |
"paths": { | |
"/*": ["src/*"] | |
}, | |
"target": "esnext", | |
"module": "esnext", | |
"strict": true, | |
"forceConsistentCasingInFileNames": true, | |
"noUnusedLocals": true, | |
"noUnusedParameters": true | |
}, | |
"include": ["src/**/*.ts", "src/**/*.vue"] | |
} |
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
declare module '*.vue' { | |
import Vue from 'vue'; | |
export default Vue; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment