Skip to content

Instantly share code, notes, and snippets.

@0x962
Created May 19, 2022 08:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save 0x962/87f6b7346cb20d0fb04527bff8cfa233 to your computer and use it in GitHub Desktop.
Save 0x962/87f6b7346cb20d0fb04527bff8cfa233 to your computer and use it in GitHub Desktop.
{
"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