-
Notifications
You must be signed in to change notification settings - Fork 1
/
tsconfig.json
44 lines (44 loc) · 1.22 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
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@ingenierias-lentas/base": [
"src"
],
"@ingenierias-lentas/enchufas-de-muestra": [
"examples/enchufas-de-muestra/src"
],
"@ingenierias-lentas/enchufa-recopiladora-bigquery": [
"plugins/enchufa-recopiladora-bigquery/src"
],
"@ingenierias-lentas/enchufa-recopiladora-google-ads": [
"plugins/enchufa-recopiladora-google-ads/src"
],
"@ingenierias-lentas/enchufa-recopiladora-meta-business": [
"plugins/enchufa-recopiladora-meta-business/src"
],
"@ingenierias-lentas/enchufa-recopiladora-postgresql": [
"plugins/enchufa-recopiladora-postgresql/src"
],
"@ingenierias-lentas/enchufa-recopiladora-shopify": [
"plugins/enchufa-recopiladora-shopify/src"
],
// "@ingenierias-lentas/recopiladora-types": [
// "packages/types/src"
// ]
},
"target": "ES6",
"module": "commonjs",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"outDir": "./dist",
},
"include": [
"src/**/*",
"packages/**/*",
"plugins/**/*",
"examples/**/*"
]
}