-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
30 lines (30 loc) · 890 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
{
"$schema": "https://json.schemastore.org/tsconfig",
"include": ["src/**/*", "raycast-env.d.ts"],
"compilerOptions": {
"lib": ["ES2023"],
"module": "commonjs",
"target": "ES2022",
"strict": true,
"isolatedModules": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"jsx": "react-jsx",
"resolveJsonModule": true,
"plugins": [
{
"name": "@0no-co/graphqlsp",
"schema": {
"url": "https://gitlab.com/api/graphql",
// introspection query may need credentials to overcome max query complexity problems
// @see: https://docs.gitlab.com/ee/api/graphql/#limits
// "headers": {
// "Authorization": "bearer glpat-XXXXXXXXXX-"
// }
},
"tadaOutputLocation": "./src/graphql-env.d.ts"
}
]
}
}