-
Notifications
You must be signed in to change notification settings - Fork 5
/
tsconfig.json
43 lines (43 loc) · 1011 Bytes
/
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
{
"compilerOptions": {
"target": "esnext",
"outDir": "dist",
"useDefineForClassFields": true,
"module": "esnext",
"strict": true,
"jsx": "preserve",
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"sourceMap": true,
"declaration": true,
"declarationDir": "dist/types",
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"moduleResolution": "node",
"baseUrl": ".",
"lib": ["esnext", "dom"],
"types": ["node", "jest", "vite/client", "vite-svg-loader"],
"paths": {
"@/*": ["src/*"],
"@api/*": ["src/api/*"]
}
},
"include": [
".d.ts",
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue",
"**/*.ts",
"**/*.md",
"plop-tpls/component/prompt.js",
"plopfile.js",
"postcss.config.js",
"build/release.js",
"unocss.config.js"
],
"exclude": ["node_modules", "dist"]
}