Created
September 30, 2019 04:17
-
-
Save webhacking/550d632f4a7a2fb909f3adb67d3e7eff to your computer and use it in GitHub Desktop.
Fav tsconfig
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": { | |
"module": "commonjs", | |
"moduleResolution": "node", | |
"typeRoots": ["./node_modules/@types", "./src/@types"], | |
"baseUrl": "./", | |
"declaration": true, | |
"removeComments": true, | |
"emitDecoratorMetadata": true, | |
"experimentalDecorators": true, | |
"skipLibCheck": true, | |
"target": "es6", | |
"sourceMap": true, | |
"pretty": true, | |
"outDir": "./dist", | |
"strict": true, | |
"noImplicitAny": true, | |
"strictNullChecks": true, | |
"forceConsistentCasingInFileNames": true, | |
"allowSyntheticDefaultImports": true, | |
"suppressImplicitAnyIndexErrors": true, | |
"noUnusedLocals": true, | |
"incremental": true | |
}, | |
"exclude": ["node_modules", "./dist"] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment