-
Notifications
You must be signed in to change notification settings - Fork 154
/
Copy pathtsconfig.json
38 lines (38 loc) · 1.02 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
36
37
38
{
"compilerOptions": {
"allowSyntheticDefaultImports": true,
"jsx": "react",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "node",
"noEmit": true,
"skipLibCheck": false,
"resolveJsonModule": true,
"strict": true,
"baseUrl": ".",
"paths": {
"app/*": ["./src/*"],
"@/*": ["./src/*"],
},
"typeRoots": ["./node_modules/@types", "./custom_typings"],
"types": ["vite-plugin-svgr/client", "image", "@testing-library/jest-dom"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"allowJs": false,
"plugins": [
{
"name": "gql.tada/ts-plugin",
"schema": "./src/graphql/schema.tada.json",
"tadaOutputLocation": "./src/types/graphql-env.d.ts"
}
]
},
"include": ["./src"],
"references": [
{ "path": "./tsconfig.node.json" },
{ "path": "./tsconfig.head.json" },
{ "path": "./.storybook/tsconfig.json" }
],
}