1
0
Fork 0
mirror of https://github.com/mozilla/pdf.js.git synced 2025-04-22 16:18:08 +02:00

Merge pull request #14156 from Snuffleupagus/escodegen-fork

Add support for modern ECMAScript `class` features
This commit is contained in:
Tim van der Meij 2021-10-23 19:12:44 +02:00 committed by GitHub
commit 0aaa4e3dbe
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
10 changed files with 75 additions and 78 deletions

View file

@ -6,14 +6,14 @@
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"target": "es5",
"module": "es2015",
"target": "ESNext",
"module": "ESNext",
"baseUrl": "./",
"strict": true,
"types": [],
"lib": [
"es2017",
"dom"
"ESNext",
"DOM"
],
"paths": {
"pdfjs-dist": ["../../build/typestest"],