-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
44 lines (44 loc) · 1.01 KB
/
tsconfig.json
File metadata and controls
44 lines (44 loc) · 1.01 KB
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
{
"extends": "./tsconfig.base.json",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "ES2022"],
"allowJs": true,
"noEmit": true,
"jsx": "preserve",
"isolatedModules": true,
"module": "esnext",
"moduleResolution": "bundler",
"baseUrl": ".",
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"],
"@talos/types": ["packages/types/src/index.ts"],
"@talos/core": ["packages/core/src/index.ts"],
"@talos/git": ["packages/git/src/index.ts"],
"@talos/terminal": ["packages/terminal/src/index.ts"],
"@talos/cli": ["packages/cli/src/index.ts"]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts"
],
"exclude": [
"node_modules",
"worktrees",
"archive"
],
"references": [
{ "path": "./packages/types" },
{ "path": "./packages/core" },
{ "path": "./packages/git" },
{ "path": "./packages/terminal" },
{ "path": "./packages/cli" }
]
}