mirror of
https://github.com/threeal/cmake-action.git
synced 2026-02-01 19:40:49 +00:00
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
This commit is contained in:
@@ -1,15 +1,12 @@
|
||||
{
|
||||
"compilerOptions": {
|
||||
"exactOptionalPropertyTypes": true,
|
||||
"strict": true,
|
||||
"module": "NodeNext",
|
||||
"moduleResolution": "NodeNext",
|
||||
"module": "node16",
|
||||
"declaration": true,
|
||||
"outDir": "dist",
|
||||
"sourceMap": true,
|
||||
"esModuleInterop": true,
|
||||
"forceConsistentCasingInFileNames": true,
|
||||
"lib": ["ES2022"],
|
||||
"target": "ES2022",
|
||||
"target": "es2022",
|
||||
"skipLibCheck": true
|
||||
},
|
||||
"include": ["src"]
|
||||
|
||||
Reference in New Issue
Block a user