mirror of
https://github.com/soconnor0919/personal-website.git
synced 2025-12-15 08:14:43 -05:00
refactor: Migrate CV/resume PDFs to external hosting and update Next.js build configuration.
This commit is contained in:
@@ -13,11 +13,15 @@
|
||||
"noUncheckedIndexedAccess": true,
|
||||
"checkJs": true,
|
||||
/* Bundled projects */
|
||||
"lib": ["dom", "dom.iterable", "ES2022"],
|
||||
"lib": [
|
||||
"dom",
|
||||
"dom.iterable",
|
||||
"ES2022"
|
||||
],
|
||||
"noEmit": true,
|
||||
"module": "ESNext",
|
||||
"moduleResolution": "Bundler",
|
||||
"jsx": "preserve", // or "react" for older versions
|
||||
"jsx": "react-jsx", // or "react" for older versions
|
||||
"plugins": [
|
||||
{
|
||||
"name": "next"
|
||||
@@ -27,7 +31,9 @@
|
||||
/* Path Aliases */
|
||||
"baseUrl": ".",
|
||||
"paths": {
|
||||
"~/*": ["./src/*"]
|
||||
"~/*": [
|
||||
"./src/*"
|
||||
]
|
||||
}
|
||||
},
|
||||
"include": [
|
||||
@@ -37,7 +43,12 @@
|
||||
"**/*.tsx",
|
||||
"**/*.cjs",
|
||||
"**/*.js",
|
||||
".next/types/**/*.ts"
|
||||
".next/types/**/*.ts",
|
||||
".next/dev/types/**/*.ts"
|
||||
],
|
||||
"exclude": ["node_modules", "drizzle.config.ts", "scripts/**/*"]
|
||||
"exclude": [
|
||||
"node_modules",
|
||||
"drizzle.config.ts",
|
||||
"scripts/**/*"
|
||||
]
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user