Files
spacedrive/apps/landing/tsconfig.json
lynx e3e8775597 better noise styling & better buttons
this commit alone took like a quarter of a work day
2024-09-01 02:51:54 -05:00

34 lines
778 B
JSON

{
"compilerOptions": {
"module": "ESNext",
"target": "ESNext",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve",
"incremental": true,
"baseUrl": ".",
"preserveWatchOutput": true,
"allowSyntheticDefaultImports": true,
"composite": true,
"paths": {
"~/*": ["./src/*"],
"@contentlayer/generated": ["./.contentlayer/generated"]
},
"plugins": [
{
"name": "next"
}
]
},
"include": ["src/plugins", "next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
"exclude": ["node_modules"]
}