From 527aeeeced9fdcc2fc3a6a08c58ceb3a17ae2122 Mon Sep 17 00:00:00 2001 From: William Carroll Date: Tue, 24 Mar 2020 13:27:30 +0000 Subject: Add sandbox project using Contentful CMS I used the boilerplate/typescript project as a starting point. This project fetches and renders books that I'm defining in a Contentful CMS that I created. --- website/sandbox/contentful/tsconfig.json | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) create mode 100644 website/sandbox/contentful/tsconfig.json (limited to 'website/sandbox/contentful/tsconfig.json') diff --git a/website/sandbox/contentful/tsconfig.json b/website/sandbox/contentful/tsconfig.json new file mode 100644 index 000000000000..013f34fdf0b1 --- /dev/null +++ b/website/sandbox/contentful/tsconfig.json @@ -0,0 +1,25 @@ +{ + "compilerOptions": { + "target": "es5", + "lib": [ + "dom", + "dom.iterable", + "esnext" + ], + "allowJs": true, + "skipLibCheck": true, + "esModuleInterop": true, + "allowSyntheticDefaultImports": true, + "strict": true, + "forceConsistentCasingInFileNames": true, + "module": "esnext", + "moduleResolution": "node", + "resolveJsonModule": true, + "isolatedModules": true, + "noEmit": true, + "jsx": "react" + }, + "include": [ + "src/**/*" + ] +} -- cgit 1.4.1