Created
July 14, 2020 09:45
-
-
Save velotiotech/2cd42f3db972ebcf47d1819a80870826 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": { | |
"lib": [ | |
"es5", | |
"es6" | |
], | |
"baseUrl": "./", | |
"emitDecoratorMetadata": true, | |
"esModuleInterop": true, | |
"experimentalDecorators": true, | |
"strictPropertyInitialization": false, | |
"importHelpers": true, | |
"module": "commonjs", | |
"outDir": "dist", | |
"removeComments": true, | |
"sourceMap": true, | |
"strict": true, | |
"target": "es6", | |
"moduleResolution": "node", | |
"types": [ | |
"node" | |
], | |
"typeRoots": [ | |
"node_modules/@types" | |
] | |
}, | |
"include": [ | |
"src/**/*.ts", | |
"spec/**/*.ts" | |
], | |
"exclude": [ | |
"src/public/" | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment