Files
simple-react-app-kit/apps/web/tsconfig.app.json
T

32 lines
801 B
JSON
Raw Normal View History

2026-07-26 23:21:33 +08:00
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "es2023",
"lib": ["ES2023", "DOM"],
"module": "esnext",
"types": ["vite/client"],
"skipLibCheck": true,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": false,
2026-07-26 23:21:33 +08:00
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"@/*": ["./src/*"],
"@workspace/blocks/*": ["../../packages/blocks/src/*"],
2026-07-26 23:21:33 +08:00
"@workspace/ui/*": ["../../packages/ui/src/*"]
}
},
"include": ["src"]
}