mirror of
https://github.com/threeal/cmake-action.git
synced 2025-04-23 03:51:20 +00:00
* 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
14 lines
256 B
JSON
14 lines
256 B
JSON
{
|
|
"compilerOptions": {
|
|
"exactOptionalPropertyTypes": true,
|
|
"strict": true,
|
|
"module": "node16",
|
|
"declaration": true,
|
|
"outDir": "dist",
|
|
"sourceMap": true,
|
|
"target": "es2022",
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src"]
|
|
}
|