monorepo/apps/web2/tsconfig.json

43 lines
1.2 KiB
JSON

{
"compilerOptions": {
"incremental": true,
"target": "esnext",
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"module": "esnext",
"moduleResolution": "bundler",
"paths": {
"@/*": ["./src/*"]
},
"resolveJsonModule": true,
"allowJs": true,
"strict": true,
"strictBindCallApply": false,
"strictNullChecks": true,
"alwaysStrict": true,
"noFallthroughCasesInSwitch": false,
"noImplicitAny": true,
"noImplicitReturns": true,
"noUnusedLocals": true,
"importsNotUsedAsValues": "remove",
"noEmit": true,
"removeComments": true,
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"skipLibCheck": true,
"pretty": true,
"plugins": [
{
"name": "next"
}
]
},
"include": ["next-env.d.ts", "typings/**/*.d.ts", ".next/types/**/*.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
}