mirror of
https://github.com/threeal/cmake-action.git
synced 2025-04-21 19:11:21 +00:00
* feat: utilize catched-error-message to parse catched error * test: fix typing in `inputs.test.ts` * build: enable TypeScript strict configuration * build: configure TypeScript to skip library check
14 lines
280 B
JSON
14 lines
280 B
JSON
{
|
|
"include": ["src"],
|
|
"exclude": ["**/*.test.ts"],
|
|
"compilerOptions": {
|
|
"exactOptionalPropertyTypes": true,
|
|
"strict": true,
|
|
"module": "node16",
|
|
"moduleResolution": "node16",
|
|
"esModuleInterop": true,
|
|
"target": "es2022",
|
|
"skipLibCheck": true
|
|
}
|
|
}
|