From cc091ad74c93d6493cf93346ecb9c6b68713b6ba Mon Sep 17 00:00:00 2001 From: Alfi Maulana Date: Wed, 13 Dec 2023 14:01:31 +0700 Subject: [PATCH] build(typescript): adjust style for value of `module` and `target` compiler options --- tsconfig.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tsconfig.json b/tsconfig.json index da7bcf7..7be55d1 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,11 +1,11 @@ { "compilerOptions": { "strict": true, - "module": "NodeNext", + "module": "nodenext", "declaration": true, "outDir": "dist", "sourceMap": true, - "target": "ES2022", + "target": "es2022", "skipLibCheck": true }, "include": ["src"]