新版本

This commit is contained in:
caiwendi88@gmail.com 2023-04-18 11:38:01 +08:00
parent 4160360dbb
commit 377ed294d9
2 changed files with 5 additions and 3 deletions

View File

@ -1,6 +1,8 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
reactStrictMode: true,
compress: true,
experimental: {
appDir: true,
},

View File

@ -1,14 +1,14 @@
{
"compilerOptions": {
"target": "ES2015",
"lib": ["dom", "dom.iterable", "esnext"],
"target": "ESNext",
"lib": ["dom", "dom.iterable", "ESNext"],
"allowJs": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"esModuleInterop": true,
"module": "esnext",
"module": "ESNext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,