link-stack/packages/leafcutter-common/tsconfig.json
2023-08-25 10:04:48 +02:00

42 lines
1.2 KiB
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"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",
"components/AppProvider.tsx",
"../../apps/leafcutter/app/_components/LanguageSelect.tsx",
"../../apps/leafcutter/app/_components/MultiProvider.tsx",
"../../apps/leafcutter/app/_components/Sidebar.tsx",
"../../apps/leafcutter/app/(main)/setup/_components/Setup.tsx",
"../../apps/leafcutter/app/_components/InternalLayout.tsx",
"../../apps/leafcutter/app/_components/TopNav.tsx",
"../../apps/leafcutter/app/_components/AccountButton.tsx"
],
"exclude": ["node_modules", "babel__core"]
}