adevtool/tsconfig.json
Danny Lin dbf8625378 tsconfig: Update to ES2021 target
This allows us to use String#replaceAll.
2021-11-07 02:34:52 -08:00

14 lines
230 B
JSON

{
"compilerOptions": {
"declaration": true,
"importHelpers": true,
"module": "commonjs",
"outDir": "lib",
"rootDir": "src",
"strict": true,
"target": "es2021"
},
"include": [
"src/**/*"
]
}