| { | |
| "compilerOptions": { | |
| "target": "es2018", | |
| "module": "commonjs", | |
| "declaration": true, | |
| "outDir": "./dist", | |
| "strict": true, | |
| "jsx": "preserve", | |
| "esModuleInterop": true, | |
| "forceConsistentCasingInFileNames": true, | |
| "resolveJsonModule": true, | |
| "lib": [ | |
| "dom", | |
| "dom.iterable", | |
| "esnext" | |
| ], | |
| "allowJs": false, | |
| "skipLibCheck": true, | |
| "noEmit": true, | |
| "incremental": true, | |
| "moduleResolution": "node", | |
| "isolatedModules": true | |
| }, | |
| "include": [ | |
| "./**/*.ts", | |
| "./**/*.tsx", | |
| "theme.config.tsx" | |
| ], | |
| "ts-node": { | |
| "swc": true | |
| }, | |
| "mdx": { | |
| "plugins": [ | |
| [ | |
| "remark-frontmatter", | |
| [ | |
| "yaml" | |
| ] | |
| ] | |
| ] | |
| }, | |
| "exclude": [ | |
| "node_modules" | |
| ] | |
| } | |