UNPKG

gatsby-mdx-remote

Version:

A plugin to transform nodes with mdx content and frontmatter into mdx File nodes for consumption by the gatsby-plugin-mdx plugin

31 lines (30 loc) 861 B
{ "compilerOptions": { "target": "ES2021", "lib": ["dom", "ESNext"], "module": "Node16", "sourceMap": true, "jsx": "react", "noUnusedLocals": true, "forceConsistentCasingInFileNames": true, "noImplicitThis": true, "noImplicitAny": true, "strictNullChecks": true, "declaration": true, "declarationMap": true, "allowSyntheticDefaultImports": true, "strict": true, "typeRoots": ["./node_modules/@types"], "types": ["node"], "esModuleInterop": true, "noEmit": false, "noEmitOnError": true, // outDir will put the compiled javascript files in our root directory // just as we were doing before with our babel compilation "outDir": ".", "skipLibCheck": true, "moduleResolution": "Node16" }, "include": ["./src/**/*", "./src/*"], "exclude": ["./node_modules/*"] }