Skip to content

Instantly share code, notes, and snippets.

@sandalsoft
Last active March 18, 2020 04:08
Show Gist options
  • Save sandalsoft/59543db7feb9a248379ec128417201ef to your computer and use it in GitHub Desktop.
Save sandalsoft/59543db7feb9a248379ec128417201ef to your computer and use it in GitHub Desktop.
{
"compilerOptions": {
"pretty": true,
"target": "esnext",
"module": "commonjs",
"lib": ["esnext"],
"declaration": true,
"outDir": "dist",
// "noEmit": true,
"strict": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"skipLibCheck": true
},
"include": ["src"],
"exclude": ["node_modules", "**/*.test.*"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment