Skip to content

Instantly share code, notes, and snippets.

@gabrielh-silvestre
Created September 12, 2022 18:26
Show Gist options
  • Save gabrielh-silvestre/322920ec1b1c1de40327ae8c9c747616 to your computer and use it in GitHub Desktop.
Save gabrielh-silvestre/322920ec1b1c1de40327ae8c9c747616 to your computer and use it in GitHub Desktop.
copy/paste tsconfig
{
"compilerOptions": {
"module": "commonjs",
"target": "ES2016",
"rootDir": ".",
"outDir": "./dist",
"baseUrl": ".",
"esModuleInterop": true,
"strict": true,
"strictPropertyInitialization": false,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"experimentalDecorators": true,
"skipLibCheck": true,
"paths": {
"@shared/*": ["src/shared/*"],
"@modules/*": ["src/modules/*"],
"@config/*": ["src/config/*"],
"@projectTypes/*": ["src/typings/*"],
}
},
"include": ["src/**/*.ts"],
"exclude": ["node_modules", "dist", "__tests__"],
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment