Skip to content

Instantly share code, notes, and snippets.

@hanspagel
Created April 3, 2021 11:50
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 hanspagel/1ecb4970d77ca03c23710347507614ba to your computer and use it in GitHub Desktop.
Save hanspagel/1ecb4970d77ca03c23710347507614ba to your computer and use it in GitHub Desktop.
hocuspocus tsconfig.json
{
"compilerOptions": {
"target": "es2019",
"module": "esnext",
"strict": true,
"jsx": "preserve",
"importHelpers": true,
"resolveJsonModule": true,
"moduleResolution": "node",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"sourceMap": true,
"baseUrl": ".",
"rootDir": ".",
"allowJs": false,
"checkJs": false,
"paths": {
"@hocuspocus/*": ["packages/*/dist", "packages/*/src"]
},
"lib": [
"esnext",
]
},
"include": [
"**/*.ts"
],
"exclude": [
"**/node_modules",
"**/dist"
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment