Skip to content

Instantly share code, notes, and snippets.

@paulodutra
Last active August 11, 2024 16:43
Show Gist options
  • Save paulodutra/ebbe0a47544b3327a096968a71c282bf to your computer and use it in GitHub Desktop.
Save paulodutra/ebbe0a47544b3327a096968a71c282bf to your computer and use it in GitHub Desktop.
alias import tsconfig.json
{
"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