Created
July 29, 2017 21:35
-
-
Save baetheus/da3218bfb0bee8a9642b6411a151a15c to your computer and use it in GitHub Desktop.
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
| { | |
| "compilerOptions": { | |
| "target": "ES2015", | |
| "module": "commonjs", | |
| "declaration": true, | |
| "sourceMap": true, | |
| "outDir": "./dist/", | |
| "rootDir": "./src/", | |
| "removeComments": true, | |
| "strict": true, | |
| "noImplicitAny": true, | |
| "strictNullChecks": true, | |
| "noImplicitThis": true, | |
| "alwaysStrict": true, | |
| "noImplicitReturns": true, | |
| "noFallthroughCasesInSwitch": true, | |
| "moduleResolution": "node", | |
| "baseUrl": "types", | |
| "typeRoots": ["types"] | |
| }, | |
| "include": [ | |
| "src/*" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment