-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
34 lines (34 loc) · 1.14 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
{
"compilerOptions": {
"module": "commonjs",
"allowJs": true,
"esModuleInterop": true,
"target": "ESNext",
"noImplicitAny": true,
"moduleResolution": "node",
"sourceMap": true,
"outDir": "build",
"baseUrl": "src",
"paths": {
"@app": ["app.ts"],
"@config": ["config.ts"],
"@launchApi": ["data/api/LaunchApi.ts"],
"@userRepo": ["data/db/UserRepository.ts"],
"@core/*": ["core/*"],
"@utils": ["utils.ts"],
"@gql/*": ["gql/*"],
"@launchResolver": ["gql/launch/launchResolver.ts"],
"@missionResolver": ["gql/mission/missionResolver.ts"],
"@mutationResolver": ["gql/mutation/mutationResolver.ts"],
"@queryResolver": ["gql/query/queryResolver.ts"],
"@userResolver": ["gql/user/userResolver.ts"],
"@logger": ["core/logger.ts"],
"@cache": ["core/cache.ts"],
"@context": ["core/context.ts"]
}
},
"include": [
"src/**/*"
],
"exclude": ["node_modules", "build", "dist",".vscode"]
}