Created
February 16, 2019 00:28
-
-
Save klogic/c7afc0f8dc6e2d69d4bd443c3bbf6af3 to your computer and use it in GitHub Desktop.
socket-io-playground/tsconfig.js
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"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