Skip to content

Instantly share code, notes, and snippets.

@Farenheith
Created January 2, 2020 20:12
Show Gist options
  • Save Farenheith/8ace72fb9acd9e725571d620eef5282c to your computer and use it in GitHub Desktop.
Save Farenheith/8ace72fb9acd9e725571d620eef5282c to your computer and use it in GitHub Desktop.
tsconfig.json configuration example
{
"extends": "gts/tsconfig-google.json",
"compilerOptions": {
"outDir": "build",
"lib": [
"es2017",
"dom",
],
"moduleResolution": "node",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"types": ["node", "mocha", "chai"]
}
}
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"rootDir": "src"
}
}
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"rootDir": "./",
"noImplicitAny": false
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment