-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
36 lines (36 loc) · 1.07 KB
/
tsconfig.json
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
{
"compilerOptions": {
"lib": ["esnext"],
"module": "esnext",
"target": "esnext",
"types": ["@types/bun"],
"moduleResolution": "bundler",
"moduleDetection": "force",
"noEmit": true,
"composite": true,
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"strict": true,
"baseUrl": ".",
"paths": {
"@assets": ["./src/client/assets"],
"@components": ["./src/client/components"],
"@constants": ["./src/types/constants"],
"@contexts": ["./src/client/contexts"],
"@helpers": ["./src/server/helpers"],
"@hooks": ["./src/client/hooks"],
"@processes": ["./processes"],
"@routes": ["./src/server/routes"],
"@types": ["./src/types/abstract"],
"@utils": ["./src/client/utils"]
}
},
"include": ["./**/*.ts", "./**/*.tsx", "./**/*.js", "./**/*.jsx", "./**/*.json"]
}