build(typescript): remove unnecessary compiler options

This commit is contained in:
Alfi Maulana 2023-12-13 14:00:24 +07:00
parent 27e324dd89
commit 41c98670c8
No known key found for this signature in database
GPG Key ID: 2242A64C2A8DF5A4

View File

@ -2,13 +2,9 @@
"compilerOptions": { "compilerOptions": {
"strict": true, "strict": true,
"module": "NodeNext", "module": "NodeNext",
"moduleResolution": "NodeNext",
"declaration": true, "declaration": true,
"outDir": "dist", "outDir": "dist",
"sourceMap": true, "sourceMap": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"lib": ["ES2022"],
"target": "ES2022", "target": "ES2022",
"skipLibCheck": true "skipLibCheck": true
}, },