astro/packages/webapi/tsconfig.json
Erika afbbc4d5bf
Update compilation target for Node 16 (#6213)
* config(esbuild): Update esbuild target to node16

* config(package): Update root package.json node engine

* config(tsconfig): Update all the tsconfigs module and targets

* chore: changeset

* chore: remove unneeded file
2023-03-06 13:57:16 -05:00

15 lines
317 B
JSON

{
"include": ["src/*"],
"exclude": ["node_modules"],
"compilerOptions": {
"target": "ES2021",
"module": "ES2022",
"moduleResolution": "node",
"esModuleInterop": true,
"declaration": true,
"declarationDir": ".",
"strict": true,
"sourceMap": true,
"declarationMap": true
}
}