-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
35 lines (35 loc) · 1.19 KB
/
Copy pathtsconfig.base.json
File metadata and controls
35 lines (35 loc) · 1.19 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
{
"compilerOptions": {
"baseUrl": ".",
"target": "es2016",
"module": "commonjs",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"skipLibCheck": true,
"experimentalDecorators": true,
"paths": {
"@capsule-cat/propel-cli": ["packages/propel-cli/src/index.ts"],
"@capsule-cat/propel-core": [
"packages/propel-core/src/index.ts",
"../propel-core/src/index.ts"
],
"@capsule-cat/propel-express": [
"packages/propel-express/src/index.ts",
"../propel-express/src/index.ts"
],
"@capsule-cat/propel-forward": [
"packages/propel-forward/src/index.ts",
"../propel-forward/src/index.ts"
],
"@capsule-cat/propel-sequelize": [
"packages/propel-sequelize/src/index.ts",
"../propel-sequelize/src/index.ts"
],
"@capsule-cat/propel-server": [
"packages/propel-server/src/index.ts",
"../propel-server/src/index.ts"
]
}
}
}