-
Notifications
You must be signed in to change notification settings - Fork 10
/
tsconfig.json
executable file
·29 lines (29 loc) · 959 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
{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "Node",
"strict": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"allowJs": true,
"paths": {
"@kousum/semi-foundation/*": ["../semi-foundation/*"],
"@kousum/semi-icons-vue": ["../semi-icons-vue/src"]
},
"jsxFactory": "h",
"jsxFragmentFactory": "Fragment",
"suppressImplicitAnyIndexErrors": true,
"strictNullChecks": false,
"sourceMap": true,
"declaration": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"lib": ["esnext", "dom"],
"types": ["vite/client", "node"],
"noImplicitAny": false
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue", "docs/**/*.vue", "node_modules/vitepress/dist/node/index.d.ts"],
"exclude": ["node_modules", "**/*.spec.ts", "**/semi-foundation/**/*.ts", "**/__test__/*"]
}