feat: initial gatsby setup

This commit is contained in:
Felix Schröter 2022-08-01 18:50:53 +02:00
parent 0452e8fa24
commit f4f421ac43
Signed by: felschr
GPG key ID: 671E39E6744C807D
9 changed files with 34983 additions and 3 deletions

19
tsconfig.json Normal file
View file

@ -0,0 +1,19 @@
{
"compilerOptions": {
"target": "esnext",
"lib": ["dom", "esnext"],
"jsx": "react",
"module": "esnext",
"moduleResolution": "node",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"include": [
"./src/**/*",
"./gatsby-node.ts",
"./gatsby-config.ts",
"./plugins/**/*"
]
}