Files
paseo/packages/web/tsconfig.json
2025-10-13 14:03:54 +02:00

21 lines
420 B
JSON

{
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"target": "ES2017",
"allowJs": true,
"noEmit": true,
"jsx": "preserve",
"plugins": [
{
"name": "next"
}
],
"paths": {
"@/*": ["./*"]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}