-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
51 lines (51 loc) · 1.42 KB
/
tsconfig.json
File metadata and controls
51 lines (51 loc) · 1.42 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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"compilerOptions": {
"incremental": true,
"tsBuildInfoFile": "./node_modules/typescript/tsbuildinfo",
"noEmit": true,
"module": "ESNext",
"target": "ES2022",
"strict": false,
"lib": ["ES2022", "dom", "dom.iterable"],
/* JSX ayarını 'preserve'den 'react-jsx'e çekmek Vite/React projeleri için daha uygundur */
"jsx": "react-jsx",
"esModuleInterop": true,
"skipLibCheck": true,
"allowImportingTsExtensions": true,
"moduleResolution": "bundler",
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"baseUrl": ".",
"ignoreDeprecations": "6.0",
"types": ["node"],
"typeRoots": ["./node_modules/@types"],
"paths": {
"@/*": ["./client/src/*"],
"@bilesenler/*": ["./client/src/bilesenler/*"],
"@arayuz/*": ["./client/src/bilesenler/arayuz/*"],
"@sayfalar/*": ["./client/src/sayfalar/*"],
"@hooks/*": ["./client/src/hooks/*"],
"@kutuphane/*": ["./client/src/kutuphane/*"],
"@stiller/*": ["./client/src/stiller/*"],
"@shared/*": ["./shared/*"],
"@assets/*": ["./attached_assets/*"]
}
},
"include": [
"client/src/**/*",
"shared/**/*",
"server/**/*",
"electron/**/*" /* Electron dosyalarını da ekleyelim */
],
"exclude": [
"node_modules",
"build",
"dist",
"**/*.test.ts"
],
"ts-node": {
"compilerOptions": {
"module": "CommonJS"
}
}
}