caro5 / client /tsconfig.app.json
Pedro de Carvalho
Update client confs
eb73631
Raw
History Blame Contribute Delete
753 Bytes
{
"compilerOptions": {
"tsBuildInfoFile": "./node_modules/.tmp/tsconfig.app.tsbuildinfo",
"target": "es2023",
"lib": ["ES2023", "DOM"],
"module": "esnext",
"types": ["vite/client"],
"skipLibCheck": true,
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": true,
"moduleDetection": "force",
"noEmit": true,
"jsx": "react-jsx",
"ignoreDeprecations": "6.0",
"noUnusedLocals": false,
"noUnusedParameters": false,
"erasableSyntaxOnly": true,
"noFallthroughCasesInSwitch": true,
"paths": {
"shared/*": ["../shared/*"]
},
"baseUrl": "."
},
"include": ["src", "../shared"],
"exclude": ["src/__tests__", "src/**/__tests__"]
}