Skip to content
This repository has been archived by the owner on Nov 20, 2024. It is now read-only.

Commit

Permalink
Change Setting
Browse files Browse the repository at this point in the history
  • Loading branch information
highjun committed Feb 28, 2024
1 parent 2abfed5 commit 3f61a4d
Show file tree
Hide file tree
Showing 3 changed files with 27 additions and 34 deletions.
1 change: 1 addition & 0 deletions next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ const nextConfig = {
})
return config
},
output: 'export'
};

export default nextConfig;
28 changes: 0 additions & 28 deletions publish.sh

This file was deleted.

32 changes: 26 additions & 6 deletions tsconfig.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,10 @@
{
"compilerOptions": {
"lib": ["dom", "dom.iterable", "esnext"],
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
Expand All @@ -19,11 +23,27 @@
],
"baseUrl": ".",
"paths": {
"@/components/*": ["src/components/*"],
"@/styles/*": ["src/styles/*"],
"@/data/*": ["data/*"]
"@/components/*": [
"src/components/*"
],
"@/styles/*": [
"src/styles/*"
],
"@/data/*": [
"data/*"
]
}
},
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts", "src/components/mdx-old/util.js", "src/components/mdx-old/mdx.js"],
"exclude": ["node_modules"]
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx",
".next/types/**/*.ts",
"src/components/mdx-old/util.js",
"src/components/mdx-old/mdx.js",
"build/types/**/*.ts"
],
"exclude": [
"node_modules"
]
}

0 comments on commit 3f61a4d

Please sign in to comment.