Skip to content

Instantly share code, notes, and snippets.

@ThallyssonKlein
Created August 26, 2022 19:51
Show Gist options
  • Save ThallyssonKlein/5a97d6ede584f443f340de73a04fd528 to your computer and use it in GitHub Desktop.
Save ThallyssonKlein/5a97d6ede584f443f340de73a04fd528 to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"target": "es2020",
"module": "commonjs",
"sourceMap": true,
"outDir": "dist",
"rootDir": "src",
"baseUrl": "src",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"paths": {
"@config/*": ["config/*"],
"@infrastructure/*": ["infrastructure/*"],
"@presentation/*": ["presentation/*"],
"@domain/*": ["domain/*"],
"@shared/*": ["shared/*"]
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment