forked from Tahul/vue-composable-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
38 lines (35 loc) · 831 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
33
34
35
36
37
38
{
"compilerOptions": {
"target": "esnext",
"jsx": "preserve",
"lib": ["esnext", "dom"],
"experimentalDecorators": true,
"baseUrl": ".",
"rootDir": ".",
"module": "esnext",
"moduleResolution": "node",
"paths": {
"vue-composable-starter": ["./src/index.ts"]
},
"resolveJsonModule": true,
"types": [
"node",
"vite/client",
"@vitest/browser/providers/playwright"
],
"strict": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noEmit": true,
"outDir": "dist",
"removeComments": false,
"sourceMap": false,
"esModuleInterop": true,
"isolatedModules": false,
"skipLibCheck": true
},
"exclude": ["dist", "node_modules"]
}