mirror of
https://github.com/decompme/decomp.me.git
synced 2026-04-25 16:38:23 -05:00
4cf3e416e5
- Use Next.js 13 app directory for all routes except projects - Add Tailwind (resolves #619) and use it for most components - New footer - Adjust navbar (logotype, buttons moved to right) - Improve the styling of the search box - New /settings/account page - /credits grabs contributors list for this repo from GitHub's API - Resolve #634 - New welcome page header with scrolling platform icons
30 lines
757 B
JSON
30 lines
757 B
JSON
{
|
|
"compilerOptions": {
|
|
"jsx": "preserve",
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"noEmit": true,
|
|
"lib": ["ESNext", "DOM"],
|
|
"target": "es5",
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"esModuleInterop": true,
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"incremental": true,
|
|
"plugins": [
|
|
{
|
|
"name": "next"
|
|
}
|
|
],
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["./src/*"]
|
|
}
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"],
|
|
"exclude": ["node_modules"]
|
|
}
|