mirror of
https://github.com/yangshun/tech-interview-handbook.git
synced 2025-08-03 04:04:24 +08:00
22 lines
576 B
JSON
22 lines
576 B
JSON
{
|
|
"$schema": "https://json.schemastore.org/tsconfig",
|
|
"display": "Next.js",
|
|
"extends": "./base.json",
|
|
"compilerOptions": {
|
|
"allowJs": true,
|
|
"declaration": false,
|
|
"declarationMap": false,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"incremental": true,
|
|
"jsx": "preserve",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"module": "esnext",
|
|
"noEmit": true,
|
|
"resolveJsonModule": true,
|
|
"target": "es5",
|
|
"strict": true
|
|
},
|
|
"include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", "**/*.cjs", "**/*.mjs"]
|
|
}
|