mirror of
https://github.com/mastermindzh/rickvanlieshout.com
synced 2025-07-26 20:22:32 +02:00
refactor(starter): upgrade to new version of gatsby
This commit is contained in:
36
tsconfig.json
Normal file
36
tsconfig.json
Normal file
@@ -0,0 +1,36 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"baseUrl": ".",
|
||||
"jsx": "react",
|
||||
"target": "es2019",
|
||||
"module": "commonjs",
|
||||
"lib": ["esnext", "dom"],
|
||||
"moduleResolution": "node",
|
||||
"paths": {
|
||||
"@/utils": ["./src/utils"],
|
||||
"@/types": ["./src/types"],
|
||||
"@/hooks": ["./src/hooks"],
|
||||
"@/utils/*": ["./src/utils/*"],
|
||||
"@/constants": ["./src/constants"],
|
||||
"@/components": ["./src/components"],
|
||||
"@/components/*": ["./src/components/*"],
|
||||
"@/mocks": ["./internal/testing/__mocks__"],
|
||||
"@/internal/*": ["./internal/*"]
|
||||
},
|
||||
"noEmit": true,
|
||||
"strict": true,
|
||||
"allowJs": false,
|
||||
"sourceMap": true,
|
||||
"skipLibCheck": true,
|
||||
"noUnusedLocals": true,
|
||||
"esModuleInterop": true,
|
||||
"resolveJsonModule": true,
|
||||
"noImplicitReturns": true,
|
||||
"noUnusedParameters": true,
|
||||
"noFallthroughCasesInSwitch": true,
|
||||
"allowSyntheticDefaultImports": true,
|
||||
"forceConsistentCasingInFileNames": true
|
||||
},
|
||||
"exclude": ["node_modules"],
|
||||
"include": ["**/*.ts", "**/*.tsx"]
|
||||
}
|
Reference in New Issue
Block a user