forked from h3ravel/framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
32 lines (32 loc) · 1.2 KB
/
tsconfig.base.json
File metadata and controls
32 lines (32 loc) · 1.2 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
{
"compilerOptions": {
"baseUrl": ".",
"paths": {
"@h3ravel/cache": ["packages/cache/src/index.ts"],
"@h3ravel/config": ["packages/config/src/index.ts"],
"@h3ravel/console": ["packages/console/src/index.ts"],
"@h3ravel/core": ["packages/core/src/index.ts"],
"@h3ravel/database": ["packages/database/src/index.ts"],
"@h3ravel/filesystem": ["packages/filesystem/src/index.ts"],
"@h3ravel/hashing": ["packages/hashing/src/index.ts"],
"@h3ravel/http": ["packages/http/src/index.ts"],
"@h3ravel/mail": ["packages/mail/src/index.ts"],
"@h3ravel/queue": ["packages/queue/src/index.ts"],
"@h3ravel/router": ["packages/router/src/index.ts"],
"@h3ravel/shared": ["packages/shared/src/index.ts"],
"@h3ravel/support": ["packages/support/src/index.ts"],
"@h3ravel/url": ["packages/url/src/index.ts"],
"@h3ravel/view": ["packages/view/src/index.ts"]
},
"experimentalDecorators": true,
"emitDecoratorMetadata": true,
"target": "es2022",
"module": "es2022",
"moduleResolution": "bundler",
"esModuleInterop": true,
"strict": true,
"allowJs": true,
"skipLibCheck": true,
"resolveJsonModule": true
}
}