aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/examples/with-gatsby/packages/tsconfig/gatsby.json
diff options
context:
space:
mode:
Diffstat (limited to 'examples/with-gatsby/packages/tsconfig/gatsby.json')
-rw-r--r--examples/with-gatsby/packages/tsconfig/gatsby.json27
1 files changed, 27 insertions, 0 deletions
diff --git a/examples/with-gatsby/packages/tsconfig/gatsby.json b/examples/with-gatsby/packages/tsconfig/gatsby.json
new file mode 100644
index 0000000..ea4e59f
--- /dev/null
+++ b/examples/with-gatsby/packages/tsconfig/gatsby.json
@@ -0,0 +1,27 @@
+{
+ "$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"]
+}