-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
36 lines (36 loc) · 1.08 KB
/
tsconfig.json
File metadata and controls
36 lines (36 loc) · 1.08 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
{
"compilerOptions": {
"target": "ES2022",
"module": "ES2022",
"moduleResolution": "bundler",
"declaration": true,
"declarationMap": true,
"outDir": "./dist",
"strict": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"sourceMap": true,
"resolveJsonModule": true,
"verbatimModuleSyntax": false,
"types": ["node", "vitest/globals"],
"baseUrl": "./",
"paths": {
"@core/*": ["src/core/*"],
"@core": ["src/core/index.ts"],
"@types": ["src/types.ts"],
"@extensions/*": ["src/extensions/*"],
"@extensions": ["src/extensions/index.ts"],
"@cli/*": ["src/cli/*"],
"@constants": ["src/constants/index.ts"],
"@errors": ["src/errors/index.ts"],
"@utils/*": ["src/utils/*"],
"@utils": ["src/utils/index.ts"],
"@plugins/*": ["src/plugins/*"],
"@plugins": ["src/plugins/index.ts"]
}
},
"include": ["src/**/*"],
"exclude": ["node_modules", "dist", "coverage", "examples", "src/web"]
}