-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
33 lines (33 loc) · 1.07 KB
/
Copy pathtsconfig.json
File metadata and controls
33 lines (33 loc) · 1.07 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
{
"compilerOptions": {
"target": "ES2024",
"module": "ESNext",
"moduleResolution": "bundler",
"noEmit": true,
"declaration": true,
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"noUncheckedIndexedAccess": true,
"exactOptionalPropertyTypes": true,
"noFallthroughCasesInSwitch": true,
"noPropertyAccessFromIndexSignature": true,
"skipLibCheck": true,
"esModuleInterop": true,
"isolatedModules": true,
"allowImportingTsExtensions": true,
"types": ["node"],
"paths": {
"typegres": ["./src/index.ts"],
"typegres/postgres": ["./src/types/postgres/index.ts"],
"typegres/sqlite": ["./src/types/sqlite/index.ts"],
"typegres/oracle": ["./src/types/oracle/index.ts"],
"typegres/drivers/pg": ["./src/drivers/pg.ts"],
"typegres/drivers/pglite": ["./src/drivers/pglite.ts"],
"typegres/drivers/sqlite": ["./src/drivers/sqlite.ts"],
"typegres/drivers/oracle": ["./src/drivers/oracle.ts"],
"typegres/drivers/do": ["./src/drivers/do.ts"]
}
},
"include": ["src"]
}