-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
42 lines (42 loc) · 1.25 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
37
38
39
40
41
42
{
"compilerOptions": {
"lib": ["ESNext", "dom"],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"moduleDetection": "force",
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": false,
"types": ["bun-types"],
"baseUrl": ".",
"paths": {
"cli": ["packages/cli"],
"cookies": ["packages/cookies"],
"data-gen": ["packages/data-gen"],
"deploy": ["packages/deploy"],
"fetcher": ["packages/fetcher"],
"files-folder": ["modules/files-folder"],
"auth": ["packages/auth"],
"htmlody": ["packages/htmlody"],
"jwt": ["packages/jwt"],
"logger": ["packages/logger"],
"npm-release": ["packages/npm-release"],
"server": ["server"],
"sqlite": ["packages/sqlite"],
"state": ["packages/state"],
"test": ["test-utils"],
"utils": ["packages/utils"],
"uuid": ["packages/uuid"],
"validation": ["packages/validation"],
"types": ["types"],
"type-utils": ["type-utils"]
}
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "packages/plugins/**/node_modules"]
}