Skip to content

Instantly share code, notes, and snippets.

@pak11273
Last active November 12, 2019 02:20
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pak11273/bbdcffb45dfcad77ef2c1916d216a6c7 to your computer and use it in GitHub Desktop.
Save pak11273/bbdcffb45dfcad77ef2c1916d216a6c7 to your computer and use it in GitHub Desktop.
basic tsconfig.json
{
"compilerOptions": {
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"module": "commonjs",
"removeComments": true,
"sourceMap": true,
"target": "es5",
"outDir": "dist"
},
"include": ["src/*.ts", "src/**/*.ts", "src/app.ts"],
"exclude": ["node_modules", "**/*.spec.ts"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment