mirror of
https://github.com/zhigang1992/connect.git
synced 2026-04-26 06:05:44 +08:00
28 lines
743 B
JSON
28 lines
743 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es5",
|
|
"lib": ["dom", "dom.iterable", "esnext"],
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"strict": false,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"noEmit": true,
|
|
"downlevelIteration": true,
|
|
"esModuleInterop": true,
|
|
"module": "esnext",
|
|
"moduleResolution": "node",
|
|
"resolveJsonModule": true,
|
|
"isolatedModules": true,
|
|
"jsx": "preserve",
|
|
"paths": {
|
|
"@components/*": ["components/*"],
|
|
"@pages/*": ["pages/*"],
|
|
"@common/*": ["common/*"]
|
|
},
|
|
"baseUrl": "src"
|
|
},
|
|
"exclude": ["node_modules", ".next"],
|
|
"include": ["next-env.d.ts", "src/**/*.ts", "src/**/*.tsx", "src/**/*.mdx", "types/**/*.d.ts"],
|
|
"noImplicitAny": false
|
|
}
|