Created
January 2, 2020 20:12
-
-
Save Farenheith/8ace72fb9acd9e725571d620eef5282c to your computer and use it in GitHub Desktop.
tsconfig.json configuration example
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
{ | |
"extends": "gts/tsconfig-google.json", | |
"compilerOptions": { | |
"outDir": "build", | |
"lib": [ | |
"es2017", | |
"dom", | |
], | |
"moduleResolution": "node", | |
"experimentalDecorators": true, | |
"emitDecoratorMetadata": true, | |
"types": ["node", "mocha", "chai"] | |
} | |
} |
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
{ | |
"extends": "./tsconfig.base.json", | |
"compilerOptions": { | |
"rootDir": "src" | |
} | |
} |
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
{ | |
"extends": "./tsconfig.base.json", | |
"compilerOptions": { | |
"rootDir": "./", | |
"noImplicitAny": false | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment