-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
27 lines (24 loc) · 1.18 KB
/
Copy pathtsconfig.json
File metadata and controls
27 lines (24 loc) · 1.18 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
{
"compilerOptions": {
/* Language and Environment */
"target": "es2023", /* The action runs on the runner's Node 24, so nothing needs downlevelling. */
"lib": ["es2023"],
"types": ["node"],
/* Modules — esbuild produces the CommonJS bundle the runner loads, so tsc only needs
to resolve the same way a bundler does (which includes reading `exports` maps:
@actions/core 3.x publishes ESM only and is invisible to the classic resolver). */
"module": "preserve",
"moduleResolution": "bundler",
"resolveJsonModule": true,
"verbatimModuleSyntax": false,
/* Emit — nothing. `yarn build` bundles, `yarn typecheck` only checks. */
"noEmit": true,
"esModuleInterop": true, /* Ease importing CommonJS modules such as axios. */
"forceConsistentCasingInFileNames": true, /* Ensure that casing is correct in imports. */
/* Type Checking */
"strict": true, /* Enable all strict type-checking options. */
"skipLibCheck": true
},
"include": ["src/**/*.ts", "vitest.config.mts"],
"exclude": ["node_modules", "dist"]
}