Supports bi-directional import/export between MDX <=> Lexical. JSX will be mapped to lexical blocks back and forth. This will allow editing our mdx docs in payload while keeping mdx as the source of truth --------- Co-authored-by: Germán Jabloñski <43938777+GermanJablo@users.noreply.github.com>
14 lines
309 B
JSON
14 lines
309 B
JSON
{
|
|
// extend your base config to share compilerOptions, etc
|
|
//"extends": "./tsconfig.json",
|
|
"compilerOptions": {
|
|
// ensure that nobody can accidentally use this config for a build
|
|
"noEmit": true
|
|
},
|
|
"include": [
|
|
// whatever paths you intend to lint
|
|
"./**/*.ts",
|
|
"./**/*.tsx"
|
|
]
|
|
}
|