Skip to content

Instantly share code, notes, and snippets.

@klogic
Created February 16, 2019 00:28
Show Gist options
  • Save klogic/c7afc0f8dc6e2d69d4bd443c3bbf6af3 to your computer and use it in GitHub Desktop.
Save klogic/c7afc0f8dc6e2d69d4bd443c3bbf6af3 to your computer and use it in GitHub Desktop.
socket-io-playground/tsconfig.js
{
"compilerOptions": {
"target": "es2017",
"module": "commonjs",
"baseUrl": ".",
"outDir": "./dist",
"jsx": "react",
"strict": true,
"noImplicitAny": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"moduleResolution": "node",
"allowJs": true,
"typeRoots": [
"./node_modules/@types/"
],
"paths": {
"*": [
"node_modules/",
]
}
},
"include": [
"./**/*"
],
"exclude": [
"dist",
"**/*.spec.ts"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment