Skip to content

Instantly share code, notes, and snippets.

@boydaihungst
Created April 2, 2021 13:31
Show Gist options
  • Save boydaihungst/f8b1847f27f593453ff81cd569e066ba to your computer and use it in GitHub Desktop.
Save boydaihungst/f8b1847f27f593453ff81cd569e066ba to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"experimentalDecorators": true,
"target": "ES2018",
"module": "CommonJS",
"moduleResolution": "node",
"esModuleInterop": true,
"emitDecoratorMetadata": true,
"resolveJsonModule": true,
"strictNullChecks": false,
"noImplicitAny": false,
"removeComments": true,
"pretty": true,
"sourceMap": true,
"strict": true,
"allowJs": true,
"outDir": "./dist",
"baseUrl": ".",
"typeRoots": ["src/@types", "node_modules/@types"],
"lib": ["es2018", "esnext.asynciterable"]
},
"include": ["src/**/*", "src/**/*.json"],
"exclude": ["node_modules", "**/*.spec.ts", "**/*.test.ts"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment