-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
34 lines (34 loc) · 1.16 KB
/
tsconfig.base.json
File metadata and controls
34 lines (34 loc) · 1.16 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
{
"compilerOptions": {
"target": "esnext",
"lib": ["es2023"],
"moduleDetection": "force",
"module": "preserve",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"types": ["node"],
"strict": true,
"noUnusedLocals": true,
"declaration": true,
"emitDeclarationOnly": true,
"esModuleInterop": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true,
"noEmit": true,
"paths": {
"@atscript/db": ["./packages/db/src"],
"@atscript/db/*": ["./packages/db/src/*"],
"@atscript/db-sql-tools": ["./packages/db-sql-tools/src"],
"@atscript/db-mongo": ["./packages/db-mongo/src"],
"@atscript/db-mongo/*": ["./packages/db-mongo/src/*"],
"@atscript/db-mysql": ["./packages/db-mysql/src"],
"@atscript/db-mysql/*": ["./packages/db-mysql/src/*"],
"@atscript/db-postgres": ["./packages/db-postgres/src"],
"@atscript/db-postgres/*": ["./packages/db-postgres/src/*"],
"@atscript/db-sqlite": ["./packages/db-sqlite/src"],
"@atscript/moost-db": ["./packages/moost-db/src"],
"@atscript/db-client": ["./packages/db-client/src"]
}
}
}