-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathtsconfig.json
32 lines (32 loc) · 1006 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
{
"extends": "@vue/tsconfig/tsconfig.dom.json",
"compilerOptions": {
"baseUrl": ".",
"target": "esnext",
"module": "esnext",
"lib": ["esnext", "DOM"],
"moduleResolution": "node",
"esModuleInterop": true,
"strict": true,
"strictNullChecks": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"noUncheckedIndexedAccess": true,
"jsx": "preserve",
"types": ["node"],
"paths": {
"vueye-table": ["./packages/vueye-table/src/index.ts"],
"@/*": ["./packages/vueye-table/src/*"]
}
},
"include": [
"./packages/*/src/**/*",
"./docs/**/*.ts",
"./packages/vueye-table/env.d.ts",
"./packages/vueye-table/src/auto-imports.d.ts",
"./scripts/**/*.ts"
],
"exclude": ["**/dist/**", "**/node_modules/**", "**/playground/**"]
}