cmake-action/tsconfig.json
Alfi Maulana a56fc88b91
build: audit TypeScript configuration (#132)
* build(typescript): remove unnecessary compiler options

* build(typescript): adjust style for value of `module` and `target` compiler options

* build(typescript): use `node16` module instead of `nodenext`

* build(typescript): enable `exactOptionalPropertyTypes` compiler option
2023-12-13 21:40:14 +07:00

14 lines
256 B
JSON

{
"compilerOptions": {
"exactOptionalPropertyTypes": true,
"strict": true,
"module": "node16",
"declaration": true,
"outDir": "dist",
"sourceMap": true,
"target": "es2022",
"skipLibCheck": true
},
"include": ["src"]
}