-
-
Notifications
You must be signed in to change notification settings - Fork 247
/
tsconfig.base.json
67 lines (67 loc) · 2.2 KB
/
tsconfig.base.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
57
58
59
60
61
62
63
64
65
66
67
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"resolveJsonModule": true,
"importHelpers": true,
"target": "esnext",
"module": "esnext",
"lib": ["es2021", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"@analogjs/astro-angular": ["packages/astro-angular/src/index.ts"],
"@analogjs/content": [
"./node_modules/@analogjs/content",
"packages/content/src/index.ts"
],
"@analogjs/content-plugin": ["packages/content-plugin/src/index.ts"],
"@analogjs/content/prism-highlighter": [
"packages/content/prism-highlighter/src/index.ts"
],
"@analogjs/content/shiki-highlighter": [
"packages/content/shiki-highlighter/src/index.ts"
],
"@analogjs/nx": ["packages/nx-plugin/src/index.ts"],
"@analogjs/platform": [
"./node_modules/@analogjs/platform",
"packages/platform/src/index.ts"
],
"@analogjs/router": [
"./node_modules/@analogjs/router",
"packages/router/src/index.ts"
],
"@analogjs/router/server": [
"./node_modules/@analogjs/router/server",
"packages/router/server/src/index.ts"
],
"@analogjs/router/tokens": [
"./node_modules/@analogjs/router/tokens",
"packages/router/tokens/src/index.ts"
],
"@analogjs/top-bar": ["libs/top-bar/src/index.ts"],
"@analogjs/trpc": ["packages/trpc/src/index.ts"],
"@analogjs/vite-plugin-angular": [
"./node_modules/@analogjs/vite-plugin-angular",
"packages/vite-plugin-angular/src/index.ts"
],
"@analogjs/vite-plugin-nitro": [
"./node_modules/@analogjs/vite-plugin-nitro",
"packages/vite-plugin-nitro/src/index.ts"
],
"libs/card": ["libs/card/src/index.ts"],
"shared/feature": ["libs/shared/feature/src/index.ts"],
"vitest-angular": [
"./node_modules/@analogjs/vitest-angular",
"packages/vitest-angular/src/index.ts"
]
}
},
"exclude": ["node_modules", "tmp"]
}