Files
outline/tsconfig.json
Tom Moor 1adcce6b5d fix: Upgrade markdown-it to fix text collapse bug (#3953)
* fix: Upgrade markdown-it to fix text collapse bug

* tsc. Need to overwrite the types for now until all Prosemirror modules are updated, they have recently been converted to Typescript and the types conflict
2022-08-11 06:31:52 -07:00

37 lines
1002 B
JSON

{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"alwaysStrict": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"baseUrl": ".",
"jsx": "react",
"lib": ["dom", "es2020", "dom.iterable", "esnext.asynciterable"],
"module": "esnext",
"moduleResolution": "node",
"noImplicitAny": true,
"noImplicitOverride": false,
"noImplicitReturns": true,
"noImplicitThis": false,
"sourceMap": true,
"resolveJsonModule": true,
"strictNullChecks": true,
"noEmit": true,
"suppressImplicitAnyIndexErrors": true,
"target": "es2020",
"paths": {
"prosemirror-markdown": ["./node_modules/@types/prosemirror-markdown"],
"@server/*": ["./server/*"],
"@shared/*": ["./shared/*"],
"~/*": ["./app/*"]
}
},
"exclude": [
"node_modules",
"build",
"server/migrations"
]
}