forked from Tahul/vue-composable-starter
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
45 lines (42 loc) · 984 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
39
40
41
42
43
44
45
{
"include": [
"vite.config.ts",
"env.d.ts",
"src/**/*.ts",
"tests/**/*.ts",
"demo/**/*.ts",
"demo/**/*.d.ts",
"demo/**/*.tsx",
"demo/**/*.vue",
"playground/**/*.ts",
"playground/**/*.d.ts",
"playground/**/*.tsx",
"playground/**/*.vue",
],
"exclude": ["dist", "node_modules"],
"compilerOptions": {
"lib": ["esnext", "dom"],
"types": ["node", "vite/client"],
"baseUrl": ".",
"rootDir": ".",
"outDir": "dist",
"sourceMap": false,
"noEmit": true,
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"skipLibCheck": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": true,
"strict": true,
"isolatedModules": false,
"experimentalDecorators": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"removeComments": false,
"jsx": "preserve"
}
}