strudel-docker/website/tsconfig.json
2023-05-26 14:12:53 +02:00

17 lines
345 B
JSON

{
"extends": "astro/tsconfigs/strict",
"compilerOptions": {
"jsx": "react-jsx",
"skipLibCheck": true,
"jsxImportSource": "react",
"noImplicitAny": false,
"types": [
"vite-plugin-pwa/client"
],
"baseUrl": ".",
"paths": {
"@components/*": ["src/components/*"],
"@src/*": ["src/*"],
}
}
}