Created
May 19, 2022 08:32
-
-
Save 0x962/87f6b7346cb20d0fb04527bff8cfa233 to your computer and use it in GitHub Desktop.
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": { | |
"lib": ["ES2020"], | |
"module": "commonjs", | |
"target": "ES2020" | |
"strict": true, | |
"importHelpers": true, | |
"moduleResolution": "node", | |
"resolveJsonModule": true, | |
"esModuleInterop": true, | |
"allowSyntheticDefaultImports": true, | |
"experimentalDecorators": true, | |
"sourceMap": true, | |
"baseUrl": ".", | |
"types": [ | |
"webpack-env", | |
"jest" | |
], | |
"preserveSymlinks": true, | |
"outDir": "dist" | |
}, | |
"include": [ | |
"src/**/*.ts", | |
"src/**/*.vue", | |
"tests/**/*.ts", | |
// NOTE: These files have to be included for the typescript-eslint to run. | |
".eslintrc.js", | |
".prettierrc.js", | |
".stylelintrc.js" | |
], | |
"exclude": [ | |
"node_modules" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment