-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Expand file tree
/
Copy pathtsconfig.main.json
More file actions
29 lines (25 loc) · 658 Bytes
/
Copy pathtsconfig.main.json
File metadata and controls
29 lines (25 loc) · 658 Bytes
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
{
"extends": ["@tsconfig/strictest"],
"compilerOptions": {
"composite": true,
"emitDeclarationOnly": true,
"outDir": "main-ts-dist",
"tsBuildInfoFile": "main-ts-dist/tsconfig.tsbuildinfo",
"lib": ["ES2024"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
// https://nodejs.org/api/typescript.html
"allowImportingTsExtensions": true,
"rewriteRelativeImportExtensions": true,
"erasableSyntaxOnly": true,
"verbatimModuleSyntax": true,
"types": ["vite/client"],
},
"references": [
{ "path": "./tsconfig.common.json" },
],
"include": [
"src/main/**/*",
],
}