astro/packages/webapi/tsconfig.json

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
317 B
JSON
Raw Normal View History

{
"include": ["src/*"],
"exclude": ["node_modules"],
"compilerOptions": {
"target": "ES2021",
"module": "ES2020",
"moduleResolution": "node",
"esModuleInterop": true,
"declaration": true,
"declarationDir": ".",
"strict": true,
"sourceMap": true,
"declarationMap": true
}
2022-03-07 21:37:50 +00:00
}