tsconfig.json
{
"compilerOptions": {
"jsx": "react-jsx",
"target": "esnext",
"lib": ["dom", "esnext"],
"module": "esnext",
"noImplicitAny": true,
"strictNullChecks": true,
"noImplicitThis": true,
"alwaysStrict": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": false,
"inlineSourceMap": true,
"inlineSources": true,
"experimentalDecorators": true,
"strictPropertyInitialization": false,
"typeRoots": ["@types", "vitest/globals"],
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"verbatimModuleSyntax": false,
"noEmit": true,
"baseUrl": ".",
"rootDir": "./",
"paths": {
"*": ["./*"]
}
},
"exclude": ["node_modules", "cdk.out", ".cdk"],
"include": ["lib/**/*", "react-app/**/*", "test/**/*", "mocks/**/*"]
}