-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
47 lines (47 loc) · 1.41 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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"compilerOptions": {
"target": "es2016",
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"module": "commonjs",
"strict": true,
"strictPropertyInitialization": false,
"rootDir": "./",
"allowJs": true,
"moduleResolution": "node",
"checkJs": true,
"outDir": "build",
"baseUrl": "./",
"paths": {
"@routes/*": ["src/routes/*"],
"@controllers/*": ["src/controllers/*"],
"@middlewares/*": ["src/middlewares/*"],
"@models/*": ["src/models/*"],
"@config/*": ["src/config/*"],
"@utils/*": ["src/utils/*"],
"@interfaces/*": ["src/interfaces/*"],
"@services/*": ["src/services/*"],
"@testHelper/*": ["__test__/src/helper/*"],
"@app": ["src/app.ts"]
},
"plugins": [
{
"name": "tsconfig-paths",
"afterDeclarations": true
}
],
"typeRoots": ["./node_modules/@types", "./src/config/@types"],
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"strictNullChecks": true
},
"include": ["src/**/*.ts", "__test__/**/*.ts"],
"exclude": [
"node_modules",
"./coverage",
"./build",
"jest.config.js",
"build1"
]
}