link-stack/packages/bridge-ui/tsconfig.json

33 lines
776 B
JSON
Raw Normal View History

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