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

29 lines
669 B
JSON
Raw Permalink Normal View History

2023-08-25 07:11:33 +00:00
{
"compilerOptions": {
"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"
}
]
},
2023-08-25 10:42:19 +02:00
"include": ["**.d.ts", "**/*.ts", "**/*.tsx", "**/*.png, **/*.svg"],
2023-08-25 07:11:33 +00:00
"exclude": ["node_modules", "babel__core"]
}