Last active
August 11, 2024 16:43
-
-
Save paulodutra/ebbe0a47544b3327a096968a71c282bf to your computer and use it in GitHub Desktop.
alias import tsconfig.json
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", | |
"declaration": true, | |
"removeComments": true, | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"allowSyntheticDefaultImports": true, | |
"target": "ES2021", | |
"sourceMap": true, | |
"outDir": "./dist", | |
"baseUrl": "./", | |
"incremental": true, | |
"skipLibCheck": true, | |
"strictNullChecks": false, | |
"noImplicitAny": false, | |
"strictBindCallApply": false, | |
"forceConsistentCasingInFileNames": false, | |
"noFallthroughCasesInSwitch": false, | |
"resolveJsonModule": true, | |
"paths": { | |
"@/*": ["src/*"], | |
"@test/*": ["test/*"] | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment