-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathtsconfig.json
26 lines (26 loc) · 919 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
{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"strict": false,
"jsx": "preserve",
"importHelpers": true,
"moduleResolution": "node",
"baseUrl": "./",
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"sourceMap": true,
"resolveJsonModule": true,
"allowJs": true,
"strictNullChecks": true,
"lib": ["esnext", "dom", "dom.iterable", "scripthost"],
"paths": {
"@vue-pro-components/types/*": ["packages/types/src/*"],
"@vue-pro-components/utils/*": ["packages/utils/src/*"],
"@vue-pro-components/headless/*": ["packages/headless/src/*"],
}
},
"include": ["**/*.ts", "**/*.tsx", "**/*.vue", "**/tests/**/*.ts", "**/tests/**/*.tsx", "**/components.d.ts"],
"exclude": ["node_modules"]
}