Created
October 20, 2019 00:38
-
-
Save garybernhardt/5c5aeb9d1bb361d28b34a1f6c3aa0a3b 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
{ | |
"extends": "../tsconfig.json", | |
"compilerOptions": { | |
"composite": true, | |
"rootDir": ".", | |
"outDir": "../../build/common" | |
}, | |
"include": ["."] | |
} |
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
{ | |
"extends": "../tsconfig.json", | |
"compilerOptions": { | |
"rootDir": ".", | |
"outDir": "../../build/server" | |
}, | |
"include": ["."], | |
"references": [ | |
{ "path": "../common" } | |
] | |
} |
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
{ | |
"compilerOptions": { | |
"forceConsistentCasingInFileNames": true, | |
"esModuleInterop": true, | |
"allowSyntheticDefaultImports": true, | |
"noImplicitReturns": true, | |
"noFallthroughCasesInSwitch": true, | |
"strict": true, | |
"noUnusedLocals": true, | |
"sourceMap": true, | |
"target": "es2018", | |
"jsx": "react", | |
"module": "CommonJS", | |
"moduleResolution": "Node", | |
"resolveJsonModule": true, | |
"noEmitOnError": true | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment