-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathtsconfig.json
67 lines (67 loc) · 1.68 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"compilerOptions": {
"target": "ESNext",
"lib": ["ESNext"],
"moduleDetection": "force",
"baseUrl": ".",
"rootDir": ".",
"module": "ESNext",
"moduleResolution": "bundler",
"paths": {
"~/*": ["./*"],
"@/*": ["./src/*"],
"@dto/*": ["./src/dtos/*"],
"@factory/*": ["./src/factory/*"],
"@factory": ["./src/factory/index.ts"],
"@lg/*": ["./src/looking_glass/*"],
"@lg": ["./src/looking_glass/index.ts"],
"@mh/*": ["./src/mad_hatter/*"],
"@mh": ["./src/mad_hatter/index.ts"],
"@memory/*": ["./src/memory/*"],
"@memory": ["./src/memory/index.ts"],
"@routes/*": ["./src/routes/*"],
"@routes": ["./src/routes/index.ts"],
"@rh": ["./src/rabbit-hole.ts"],
"@logger": ["./src/logger.ts"],
"@db": ["./src/database.ts"],
"@utils": ["./src/utils.ts"],
"@hook": ["./src/mad_hatter/hook.ts"],
"@tool": ["./src/mad_hatter/tool.ts"],
"@form": ["./src/mad_hatter/form.ts"],
"@plugin": ["./src/mad_hatter/plugin.ts"]
},
"resolveJsonModule": true,
"typeRoots": [
"node_modules/@types"
],
"allowImportingTsExtensions": true,
"allowJs": true,
"strict": true,
"noFallthroughCasesInSwitch": true,
"noUncheckedIndexedAccess": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noEmit": true,
"outDir": "dist",
"sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"verbatimModuleSyntax": true,
"skipLibCheck": true
},
"include": [
"./src/**/*.ts",
"./src/**/*",
"./test/**/*.ts",
"src/globals.d.ts",
"eslint.config.mjs",
"vitest.config.ts"
],
"exclude": [
"dist"
],
"vueCompilerOptions": {
"vitePressExtensions": ["./docs/**/*.md"]
}
}