-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
42 lines (42 loc) · 1.11 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": ["cli"],
"cookies": ["cookies"],
"data-gen": ["data-gen"],
"deploy": ["deploy"],
"fetcher": ["fetcher"],
"files-folder": ["modules/files-folder"],
"auth": ["auth"],
"htmlody": ["htmlody"],
"jwt": ["jwt"],
"logger": ["logger"],
"npm-release": ["npm-release"],
"server": ["server"],
"sqlite": ["sqlite"],
"state": ["state"],
"test": ["test-utils"],
"utils": ["utils"],
"uuid": ["uuid"],
"validation": ["validation"],
"types": ["types"],
"type-utils": ["type-utils"]
}
},
"include": ["**/*.ts"],
"exclude": ["node_modules", "plugins/**/node_modules"]
}