diff options
Diffstat (limited to 'examples/with-gatsby/packages/tsconfig')
| -rw-r--r-- | examples/with-gatsby/packages/tsconfig/README.md | 3 | ||||
| -rw-r--r-- | examples/with-gatsby/packages/tsconfig/base.json | 20 | ||||
| -rw-r--r-- | examples/with-gatsby/packages/tsconfig/gatsby.json | 27 | ||||
| -rw-r--r-- | examples/with-gatsby/packages/tsconfig/nextjs.json | 22 | ||||
| -rw-r--r-- | examples/with-gatsby/packages/tsconfig/package.json | 11 | ||||
| -rw-r--r-- | examples/with-gatsby/packages/tsconfig/react-library.json | 11 |
6 files changed, 0 insertions, 94 deletions
diff --git a/examples/with-gatsby/packages/tsconfig/README.md b/examples/with-gatsby/packages/tsconfig/README.md deleted file mode 100644 index 0da79cf..0000000 --- a/examples/with-gatsby/packages/tsconfig/README.md +++ /dev/null @@ -1,3 +0,0 @@ -# `tsconfig` - -These are base shared `tsconfig.json`s from which all other `tsconfig.json`'s inherit from. diff --git a/examples/with-gatsby/packages/tsconfig/base.json b/examples/with-gatsby/packages/tsconfig/base.json deleted file mode 100644 index d72a9f3..0000000 --- a/examples/with-gatsby/packages/tsconfig/base.json +++ /dev/null @@ -1,20 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/tsconfig", - "display": "Default", - "compilerOptions": { - "composite": false, - "declaration": true, - "declarationMap": true, - "esModuleInterop": true, - "forceConsistentCasingInFileNames": true, - "inlineSources": false, - "isolatedModules": true, - "moduleResolution": "node", - "noUnusedLocals": false, - "noUnusedParameters": false, - "preserveWatchOutput": true, - "skipLibCheck": true, - "strict": true - }, - "exclude": ["node_modules"] -} diff --git a/examples/with-gatsby/packages/tsconfig/gatsby.json b/examples/with-gatsby/packages/tsconfig/gatsby.json deleted file mode 100644 index ea4e59f..0000000 --- a/examples/with-gatsby/packages/tsconfig/gatsby.json +++ /dev/null @@ -1,27 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/tsconfig", - "display": "Gatsby", - "extends": "./base.json", - "compilerOptions": { - "target": "esnext", - "lib": ["dom", "esnext"], - "allowJs": true, - "skipLibCheck": true, - "strict": true, - "forceConsistentCasingInFileNames": true, - "noEmit": true, - "incremental": true, - "esModuleInterop": true, - "module": "esnext", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "react" - }, - "include": [ - "./src/**/*", - "./gatsby-node.ts", - "./gatsby-config.ts", - "./plugins/**/*" - ], - "exclude": ["node_modules"] -} diff --git a/examples/with-gatsby/packages/tsconfig/nextjs.json b/examples/with-gatsby/packages/tsconfig/nextjs.json deleted file mode 100644 index 3b7dfa9..0000000 --- a/examples/with-gatsby/packages/tsconfig/nextjs.json +++ /dev/null @@ -1,22 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/tsconfig", - "display": "Next.js", - "extends": "./base.json", - "compilerOptions": { - "target": "es5", - "lib": ["dom", "dom.iterable", "esnext"], - "allowJs": true, - "skipLibCheck": true, - "strict": true, - "forceConsistentCasingInFileNames": true, - "noEmit": true, - "incremental": true, - "esModuleInterop": true, - "module": "esnext", - "resolveJsonModule": true, - "isolatedModules": true, - "jsx": "preserve" - }, - "include": ["src", "next-env.d.ts"], - "exclude": ["node_modules"] -} diff --git a/examples/with-gatsby/packages/tsconfig/package.json b/examples/with-gatsby/packages/tsconfig/package.json deleted file mode 100644 index 23e0c0f..0000000 --- a/examples/with-gatsby/packages/tsconfig/package.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "name": "tsconfig", - "version": "0.0.0", - "private": true, - "files": [ - "base.json", - "nextjs.json", - "gatsby.json", - "react-library.json" - ] -} diff --git a/examples/with-gatsby/packages/tsconfig/react-library.json b/examples/with-gatsby/packages/tsconfig/react-library.json deleted file mode 100644 index af8711c..0000000 --- a/examples/with-gatsby/packages/tsconfig/react-library.json +++ /dev/null @@ -1,11 +0,0 @@ -{ - "$schema": "https://json.schemastore.org/tsconfig", - "display": "React Library", - "extends": "./base.json", - "compilerOptions": { - "jsx": "react-jsx", - "lib": ["ES2015"], - "module": "ESNext", - "target": "es6" - } -} |
