-
Notifications
You must be signed in to change notification settings - Fork 421
/
Copy pathtsconfig.json
35 lines (35 loc) · 1.14 KB
/
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
31
32
33
34
35
{
"extends": "astro/tsconfigs/base",
"compilerOptions": {
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "nodenext",
"resolveJsonModule": true,
"isolatedModules": true,
"esModuleInterop": true,
"types": ["vite/client", "node", "jest"],
"typeRoots": ["./node_modules/@types", "./node_modules", "./typechain-types", "./src/types"],
"jsxImportSource": "react",
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"~/*": ["src/*"],
"@components": ["src/components/index.ts"],
"@components/*": ["src/components/*"],
"@config": ["src/config/"],
"@config/*": ["src/config/*"],
"@features/*": ["src/features/*"],
"@graphql": ["src/graphql/"],
"@graphql/*": ["src/graphql/*"],
"@stores/*": ["src/stores/*"],
"@utils": ["src/utils/"],
"@utils/*": ["src/utils/*"],
"@variables": ["src/config/markdown-variables.ts"],
"@abi": ["src/features/abi/index.ts"]
},
"strictNullChecks": true,
"verbatimModuleSyntax": false
},
"include": [".astro/types.d.ts", "src/**/*", "src/types/*.d.ts"],
"exclude": ["dist", "typechain-types"]
}