mirror of
https://github.com/Aviortheking/nextjs-clone.git
synced 2025-04-22 02:42:10 +00:00
44 lines
909 B
JSON
44 lines
909 B
JSON
{
|
|
"extends": "./node_modules/@dzeio/config/tsconfig.base.json",
|
|
"compilerOptions": {
|
|
"jsx": "react-jsx",
|
|
"outDir": "dist",
|
|
"target": "ES2022",
|
|
"module": "NodeNext",
|
|
"skipLibCheck": true,
|
|
|
|
"moduleResolution": "NodeNext",
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"emitDecoratorMetadata": true,
|
|
"allowJs": true,
|
|
"pretty": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
// Type Checking
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"alwaysStrict": true,
|
|
"strict": true,
|
|
"strictNullChecks": true,
|
|
"strictFunctionTypes": true,
|
|
"strictBindCallApply": true,
|
|
"strictPropertyInitialization": true,
|
|
|
|
"noImplicitAny": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": [
|
|
"src"
|
|
],
|
|
"files": [
|
|
"main.ts"
|
|
],
|
|
"exclude": [
|
|
"node_modules"
|
|
]
|
|
} |