nextjs-clone/tsconfig.json
Florian Bouillon 3a8f50f0e3
feat: updated
Signed-off-by: Avior <github@avior.me>
2023-05-03 11:00:11 +02:00

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"
]
}