-
-
Notifications
You must be signed in to change notification settings - Fork 21
/
tsconfig.json
30 lines (30 loc) · 979 Bytes
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"compilerOptions": {
"module": "esnext",
"target": "esnext",
"lib": ["dom", "esnext"],
"jsx": "react-jsx",
"jsxImportSource": "@emotion/react",
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"skipLibCheck": true,
"allowJs": true,
"allowSyntheticDefaultImports": true,
"outDir": "./dist", // not actually used
"resolveJsonModule": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"@components/*": ["./src/components/*"],
"@data/*": ["./src/data/*"],
"@atoms/*": ["./src/atoms/*"],
"@atoms": ["./src/atoms"],
"@helpers/*": ["./src/helpers/*"],
"@announcement-data/*": ["./src/announcement-data/*"],
"@hooks/*": ["./src/hooks/*"],
"@assets/*": ["./src/assets/*"]
}
},
"include": ["./src/**/*", "./gatsby-node.ts", "./gatsby-config.ts", "./gatsby-browser.tsx", "./gatsby-ssr.tsx", "./plugins/**/*"]
}