-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.build.json
45 lines (45 loc) · 1002 Bytes
/
tsconfig.build.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
{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"baseUrl": ".",
"outDir": "./build/src",
"allowJs": true,
"paths": {
"@app/*": [
"src/application/*"
],
"@b3_stock_alerts/*": [
"src/b3_stock_alerts/*"
],
"@notification_worker/*": [
"src/notification_worker/*"
],
"@stocks_job/*": [
"src/stocks_job/*"
],
"@shared/*": [
"src/_shared/*"
]
},
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true
},
"exclude": [
"./playwright-report",
"./test-results",
"./**/*.unit.test.ts",
"./**/*.int.test.ts",
"./**/*.e2e.test.ts",
"./**/*.e2e.spec.ts",
"./jest.config.js",
"./jest.unit.config.js",
"./jest.int.config.js",
"./jest.e2e.config.js",
"./playwright.config.ts",
"./src/application/setup_e2e_api.ts",
"./tsconfig-paths-bootstrap.js"
]
}