schlechtenburg/tsconfig.json
2024-10-08 09:15:26 +02:00

26 lines
461 B
JSON

{
"compilerOptions": {
"target": "esnext",
"module": "esnext",
"moduleResolution": "node",
"strict": true,
"jsx": "preserve",
"sourceMap": true,
"lib": [
"esnext",
"dom"
],
"plugins": [
{
"name": "@vuedx/typescript-plugin-vue"
}
],
"resolveJsonModule": true,
"allowSyntheticDefaultImports": true,
"types": [
"@vitest/browser/providers/playwright"
],
"paths": {}
}
}