-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
44 lines (44 loc) · 1.33 KB
/
tsconfig.json
File metadata and controls
44 lines (44 loc) · 1.33 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
{
"compilerOptions": {
"rootDir": "./src",
"outDir": "./dist",
"target": "esnext",
"module": "commonjs",
"esModuleInterop": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"removeComments": true,
"skipLibCheck": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"forceConsistentCasingInFileNames": true,
"lib": ["esnext", "esnext.asynciterable", "DOM"],
"types": ["node"],
"baseUrl": ".",
"paths": {
"@datasources": ["src/datasources"],
"@datasources/*": ["src/datasources/*"],
"@interface": ["src/interface"],
"@interface/*": ["src/interface/*"],
"@resolvers": ["src/resolvers"],
"@resolvers/*": ["src/resolvers/*"],
"@env": ["src/infrastructure/env"],
"@env/*": ["src/infrastructure/env/*"],
"@knex": ["src/infrastructure/knex"],
"@knex/*": ["src/infrastructure/knex/*"],
"@generated": ["src/infrastructure/generated"],
"@generated/*": ["src/infrastructure/generated/*"],
"@utils": ["src/infrastructure/utils"],
"@utils/*": ["src/infrastructure/utils/*"]
},
"typeRoots": ["node_modules/@types"]
},
"files": ["src/graphql.d.ts"],
"include": [
"src/**/*.ts",
"eslint.config.mjs"
],
"exclude": ["codegen.ts", "dist"]
}