forked from jdf2e/nutui
-
Notifications
You must be signed in to change notification settings - Fork 2
/
tsconfig.json
29 lines (29 loc) · 834 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": {
"baseUrl": ".",
"rootDir": ".",
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"jsxImportSource": "vue",
"sourceMap": false,
"declaration": false,
"removeComments": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"skipLibCheck": true,
"lib": ["esnext", "dom"],
"outDir": "./tsc/test",
"types": ["vite/client", "vitest/globals"],
"allowJs": true,
"paths": {
"@/*": ["src/*"],
"@nutui/nutui": ["src/packages/index.ts"],
"@nutui/nutui-taro": ["src/packages/taro.ts"]
}
},
"include": ["src/**/*.ts", "src/**/*.d.ts", "src/**/*.tsx", "src/**/*.vue"],
"exclude": ["node_modules", "packages/nutui-taro-demo", "packages/nutui-vscode-extension"]
}