-
-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 1 KB
/
tsconfig.json
File metadata and controls
33 lines (33 loc) · 1 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
{
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"useDefineForClassFields": true,
"rootDir": "./src",
"customConditions": [],
"module": "ESNext",
"moduleResolution": "bundler",
"paths": {
"nitro-graphql": ["./src/index.ts"],
"nitro-graphql/types": ["./src/ecosystem/nitro/types/index.ts"],
"nitro-graphql/utils/apollo": ["./src/ecosystem/nitro/utils/apollo.ts"],
"#graphql/server": ["./src/graphql/server.ts"]
},
"resolveJsonModule": true,
"allowImportingTsExtensions": true,
"allowJs": true,
"strict": true,
"noImplicitOverride": true,
"noImplicitThis": true,
"noUncheckedIndexedAccess": true,
"noEmit": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "playground", "playground-nuxt"]
}