Skip to content

Instantly share code, notes, and snippets.

@geraldoam
Last active July 11, 2021 16:15
Show Gist options
  • Save geraldoam/66af2248b18660f1eb2a7ccd98ba07b2 to your computer and use it in GitHub Desktop.
Save geraldoam/66af2248b18660f1eb2a7ccd98ba07b2 to your computer and use it in GitHub Desktop.
tsconfig from waldemar
{
"compilerOptions": {
"target": "es2019",
"moduleResolution": "node",
"module": "commonjs",
"lib": ["es2019"],
"sourceMap": true,
"outDir": "dist",
"strict": true,
"noImplicitAny": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"noImplicitThis": true,
"resolveJsonModule": true,
"alwaysStrict": true,
"removeComments": true,
"noImplicitReturns": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"paths": {
"@src/*": ["./src/*"],
"@test/*": ["./test/*"]
},
"rootDirs": ["./src", "./test"],
"experimentalDecorators": true,
"emitDecoratorMetadata": true
},
"include": ["./src/**/*.ts", "./test/**/*.ts"],
"exclude": ["./node_modules/*", "dist"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment