nextjs-clone/tsconfig.json
Florian Bouillon e19db6ee5c
feat: updated
Signed-off-by: Avior <f.bouillon@aptatio.com>
2022-11-24 12:07:30 +01:00

41 lines
885 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
},
"files": [
"main.ts"
],
"exclude": [
"node_modules"
]
}