mirror of
https://github.com/vercel/next.js.git
synced 2026-09-20 02:25:18 +08:00
20 lines
423 B
JSON
20 lines
423 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "commonjs",
|
|
"sourceMap": true,
|
|
"strict": false,
|
|
"esModuleInterop": true,
|
|
"target": "es2015",
|
|
"lib": ["dom", "es2020"],
|
|
"preserveWatchOutput": true,
|
|
"skipLibCheck": true,
|
|
"outDir": "dist",
|
|
"types": ["node"],
|
|
"paths": {
|
|
"webpack": ["../../node_modules/webpack5"]
|
|
}
|
|
},
|
|
"include": ["**/*.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|