Last active
May 29, 2019 05:04
-
-
Save seanpmaxwell/b5bd528d534d3f1e23c6d9c931483431 to your computer and use it in GitHub Desktop.
TypeScriptFullStackShell's tsconfig.json
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
Show hidden characters
| { | |
| "compileOnSave": true, | |
| "compilerOptions": { | |
| "module": "commonjs", | |
| "strict": true, | |
| "baseUrl": "./", | |
| "outDir": "build", | |
| "sourceMap": true, | |
| "removeComments": true, | |
| "experimentalDecorators": true, | |
| "target": "es6", | |
| "emitDecoratorMetadata": true, | |
| "moduleResolution": "node", | |
| "importHelpers": true, | |
| "types": [ | |
| "node" | |
| ], | |
| "typeRoots": [ | |
| "node_modules/@types" | |
| ] | |
| }, | |
| "include": [ | |
| "./src/**/*.ts" | |
| ], | |
| "exclude": [ | |
| "./src/**/*.test.ts", | |
| "./src/public/" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment