forked from pikax/vue-composable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
29 lines (29 loc) · 829 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": ".",
"outDir": "dist",
"sourceMap": false,
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"allowJs": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitThis": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"removeComments": false,
"lib": ["esnext", "dom"],
"types": ["jest", "node"],
"rootDir": ".",
"typeRoots": ["node_modules/@types"],
"paths": {
"@vue-composable/axios": ["packages/axios/src"],
"@vue-composable/cookie": ["packages/cookie/src"],
"vue-composable": ["packages/vue-composable/src"]
}
},
"include": ["packages/global.d.ts", "packages/*/src", "packages/*/__tests__"]
}