소스 검색

update tsconfig

Aurélien Richez 4 년 전
부모
커밋
bde929e964
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      tsconfig.json

+ 2 - 2
tsconfig.json

@@ -1,6 +1,7 @@
 {
   "compilerOptions": {
-    "target": "es5",
+    "lib": ["es2020"],
+    "target": "es2020",
     "module": "commonjs",
     "outDir": "./lib",
     "declaration": true,
@@ -8,7 +9,6 @@
     "strict": true,
     "noUnusedLocals": true,
     "esModuleInterop": true,
-    "lib": ["es6"]
   },
   "include": ["./src/**/*", "tests/streams.test.ts"]
 }