-
Notifications
You must be signed in to change notification settings - Fork 2
/
typedoc.tsconfig.json
46 lines (43 loc) · 1.05 KB
/
typedoc.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
{
"include": ["../pinia/src/global.d.ts", "../*/src/**/*.ts"],
"exclude": [
"../test-vue-2",
"../pinia/__tests__/test-utils.ts",
"../pinia/test-dts",
"../*/__tests__/**/*.ts",
"../*/src/*.spec.ts",
"../nuxt/playground",
"../nuxt/src/runtime",
"**/*.spec.ts"
],
"compilerOptions": {
"baseUrl": ".",
"rootDir": "..",
"outDir": "dist",
"sourceMap": false,
"noEmit": true,
"paths": {
"@pinia/*": ["../*/src"],
"pinia": ["../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"]
}
}