monorepo/apps/web2/tsconfig.json

57 lines
1.2 KiB
JSON
Raw Normal View History

2024-09-28 14:58:45 +08:00
{
2025-02-09 10:39:10 +08:00
"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"
]
2024-12-02 13:41:28 +08:00
}