Skip to content

Instantly share code, notes, and snippets.

@restuu
Created April 24, 2020 04:47
Show Gist options
  • Save restuu/b34b400f3b1d00a926a275bd8b7248cc to your computer and use it in GitHub Desktop.
Save restuu/b34b400f3b1d00a926a275bd8b7248cc to your computer and use it in GitHub Desktop.
tsconfig
{
"compilerOptions": {
"lib": ["es6", "es2016", "es2016.array.include", "es2017", "dom"],
"module": "commonjs",
"noImplicitReturns": true,
"sourceMap": true,
"target": "es2017",
"esModuleInterop": true,
"strictNullChecks": true,
"isolatedModules": true,
"strictPropertyInitialization": true,
"skipLibCheck": true,
"outDir": "lib"
},
"compileOnSave": true,
"include": ["src/"],
"exclude": ["node_modules", "src/**/*mocks*/**/*", "src/**/*tests*/**/*", "src/**/*.test.*"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment