Skip to content

Instantly share code, notes, and snippets.

@rabelloo
Created September 14, 2020 14:36
Show Gist options
  • Save rabelloo/c3f9f41206c820d07ce6c0fa7c644288 to your computer and use it in GitHub Desktop.
Save rabelloo/c3f9f41206c820d07ce6c0fa7c644288 to your computer and use it in GitHub Desktop.
{
"include": ["src/**/*"],
"exclude": ["src/**/*.spec.*"],
"compilerOptions": {
"outDir": "dist",
"rootDir": "src",
"module": "esnext",
"moduleResolution": "node",
"target": "es2019",
"esModuleInterop": true,
"sourceMap": true,
"jsx": "react",
"lib": ["esnext", "dom"],
"alwaysStrict": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"skipLibCheck": false,
"strictNullChecks": true
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment