esm-logging/tsconfig.json
Rodney, Tiara 0d2f45fe31
feat: add polyfill for RegExp.escape
the method is currently in ECMAScript standard draft 4 and not yet adopted
broadly enough. V8 has basic support, but I'm not betting on it coming soon, so
I've implemented a simple polyfill.
2025-05-01 19:25:37 +02:00

21 lines
527 B
JSON

{
"compilerOptions": {
"target": "es2015",
"module": "nodenext",
"strict": true,
"sourceMap": false,
"esModuleInterop": true,
"resolveJsonModule": false,
"allowJs": false,
"declaration": false,
"declarationMap": false,
"outDir": "build/release",
"baseUrl": "./",
"paths": { "*": ["node/modules/*"] },
"lib": ["esnext.weakref", "dom"]
},
"include": [
"src/**/*.ts",
"src/types/**/*.d.ts"
]
}