-
Notifications
You must be signed in to change notification settings - Fork 310
Expand file tree
/
Copy pathtsconfig.vitest-temp.json
More file actions
142 lines (142 loc) · 3.88 KB
/
Copy pathtsconfig.vitest-temp.json
File metadata and controls
142 lines (142 loc) · 3.88 KB
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
{
"compilerOptions": {
"strict": true,
"allowUnusedLabels": false,
"allowUnreachableCode": false,
"exactOptionalPropertyTypes": false,
"noFallthroughCasesInSwitch": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noPropertyAccessFromIndexSignature": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"isolatedModules": true,
"checkJs": true,
"esModuleInterop": true,
"skipLibCheck": true,
"lib": [
"DOM",
"DOM.Iterable",
"ES2023"
],
"module": "nodenext",
"target": "es2022",
"moduleResolution": "nodenext",
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"tsBuildInfoFile": "/Users/jasonkuhrt/projects/jasonkuhrt/graffle/node_modules/.pnpm/vitest@3.1.1_@types+debug@4.1.12_@types+node@22.14.1_jsdom@26.1.0_tsx@4.19.3/node_modules/vitest/dist/chunks/tsconfig.tmp.tsbuildinfo",
"noErrorTruncation": true,
"incremental": true,
"noEmit": true,
"resolveJsonModule": true,
"forceConsistentCasingInFileNames": true,
"paths": {
"#src/*": [
"./src/*"
],
"#graffle": [
"./src/exports/index.ts"
],
"#graffle/client": [
"./src/exports/client.ts"
],
"#graffle/extension": [
"./src/exports/extension.ts"
],
"#graffle/generator": [
"./src/exports/generator.ts"
],
"#graffle/kit": [
"./src/exports/kit.ts"
],
"#graffle/schema": [
"./src/exports/schema.ts"
],
"#graffle/utilities-for-generated": [
"./src/exports/utilities-for-generated.ts"
],
"#graffle/generator-helpers/standard-scalar-types": [
"./src/lib/graphql-kit/schema/type/standard/scalar.ts"
],
"#graffle/extensions/transport-http": [
"./src/exports/extensions/transport-http/runtime.ts"
],
"#graffle/extensions/document-builder": [
"./src/exports/extensions/document-builder/runtime.ts"
],
"#graffle/extension-exports": [
"./src/exports/extension_exports.ts"
],
"#graffle/presets/bare": [
"./src/exports/presets/bare.ts"
],
"#graffle/presets/basic": [
"./src/exports/presets/basic.ts"
],
"#graffle/presets/minimal": [
"./src/exports/presets/minimal.ts"
],
"#lib/anyware": [
"./src/lib/anyware/$.ts"
],
"#lib/config-manager": [
"./src/lib/config-manager/$.ts"
],
"#lib/errors": [
"./src/lib/errors/$.ts"
],
"#lib/grafaid": [
"./src/lib/grafaid/$.ts"
],
"#lib/md-jsdoc": [
"./src/lib/md-jsdoc/$.ts"
],
"#lib/tex": [
"./src/lib/tex/$.ts"
],
"#lib/type-function": [
"./src/lib/type-function/$.ts"
],
"#test/schema/*": [
"./tests/_/fixtures/schemas/*"
],
"#test/*": [
"./tests/_/*.ts"
]
},
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"plugins": [
{
"name": "@0no-co/graphqlsp",
"schema": "./tests/_/fixtures/schemas/pokemon/schema.graphql",
"templateIsCallExpression": false
}
],
"noImplicitAny": true,
"noImplicitThis": true,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"strictBuiltinIteratorReturn": true,
"alwaysStrict": true,
"useUnknownInCatchVariables": true,
"useDefineForClassFields": true,
"allowSyntheticDefaultImports": true,
"resolvePackageJsonExports": true,
"resolvePackageJsonImports": true,
"preserveConstEnums": true,
"emitDeclarationOnly": false
},
"$schema": "https://json.schemastore.org/tsconfig",
"_version": "22.0.0",
"exclude": [
"build",
"bundle-sizes",
"examples",
"website"
]
}