cmake-action/tsconfig.json
Alfi Maulana fe729787d8
build: enable TypeScript strict configuration (#395)
* 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
2024-08-06 16:41:09 +08:00

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
}
}