UNPKG

gatsby-source-tilda

Version:

Gatsby source plugin for building websites using the tilda.cc CMS as a data source

30 lines (29 loc) 829 B
{ "compilerOptions": { "target": "ES2022", "module": "NodeNext", "moduleResolution": "NodeNext", "lib": ["dom", "es6"], "sourceMap": false, "jsx": "react", "noUnusedLocals": true, "forceConsistentCasingInFileNames": true, "noImplicitThis": true, "noImplicitAny": true, "strictNullChecks": true, "declaration": 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": "./dist", "skipLibCheck": true }, "include": ["./src/**/*"], "exclude": ["./node_modules/*"] }