link-stack/packages/ui/tsconfig.json

33 lines
776 B
JSON
Raw Permalink Normal View History

2024-03-17 12:58:25 +01:00
{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
2025-10-15 17:09:56 +02:00
"noEmit": false,
"outDir": "./dist",
"declaration": true,
"declarationMap": true,
2024-03-17 12:58:25 +01:00
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"paths": {
"@/*": ["./*", "../../node_modules/*"]
},
"plugins": [
{
"name": "next"
}
]
},
"include": ["**.d.ts", "**/*.ts", "**/*.tsx", "**/*.png, **/*.svg"],
2025-10-15 17:09:56 +02:00
"exclude": ["node_modules", "babel__core", "dist"]
2024-03-17 12:58:25 +01:00
}