Skip to content

Instantly share code, notes, and snippets.

@garybernhardt
Created October 20, 2019 00:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save garybernhardt/5c5aeb9d1bb361d28b34a1f6c3aa0a3b to your computer and use it in GitHub Desktop.
Save garybernhardt/5c5aeb9d1bb361d28b34a1f6c3aa0a3b to your computer and use it in GitHub Desktop.
{
"extends": "../tsconfig.json",
"compilerOptions": {
"composite": true,
"rootDir": ".",
"outDir": "../../build/common"
},
"include": ["."]
}
{
"extends": "../tsconfig.json",
"compilerOptions": {
"rootDir": ".",
"outDir": "../../build/server"
},
"include": ["."],
"references": [
{ "path": "../common" }
]
}
{
"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