forked from vuejs/pinia
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
56 lines (56 loc) · 1.16 KB
/
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
46
47
48
49
50
51
52
53
54
55
56
{
"include": [
"packages/pinia/src/global.d.ts",
"packages/*/src/**/*.ts",
"packages/*/__tests__/**/*.ts"
],
"exclude": [
"packages/test-vue-2",
"packages/pinia/__tests__/test-utils.ts",
"packages/pinia/test-dts",
"packages/playground",
"packages/online-playground",
"packages/nuxt"
],
"compilerOptions": {
"baseUrl": ".",
"rootDir": ".",
"outDir": "dist",
"sourceMap": false,
"noEmit": true,
"paths": {
"@pinia/*": [
"packages/*/src"
],
"pinia": [
"packages/pinia/src"
]
},
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"allowJs": false,
"skipLibCheck": true,
"noUnusedLocals": true,
"strictNullChecks": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noImplicitReturns": false,
"strict": true,
"isolatedModules": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"esModuleInterop": true,
"removeComments": false,
"jsx": "preserve",
"lib": [
"esnext",
"dom"
],
"types": [
"vitest",
"node",
"vite/client"
]
}
}