Created
September 12, 2022 18:26
-
-
Save gabrielh-silvestre/322920ec1b1c1de40327ae8c9c747616 to your computer and use it in GitHub Desktop.
copy/paste tsconfig
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": { | |
"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