Created
November 19, 2017 21:26
-
-
Save zeromancer/65e960e7ad2fe03be1dc7ce428a12510 to your computer and use it in GitHub Desktop.
This file contains 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": "ES2017", | |
"outDir": "build", | |
"declaration": true, | |
"rootDir": "src", | |
"module": "commonjs", | |
"moduleResolution": "node", | |
"sourceMap": true, | |
"experimentalDecorators": true, | |
"noImplicitAny": true, | |
"strictNullChecks": true, | |
"noImplicitReturns": true, | |
"noImplicitThis": true | |
}, | |
"include": [ | |
"src/*", | |
"src/**/*" | |
], | |
"exclude": [ | |
"build", | |
"dist", | |
"node_modules", | |
".vscode" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment