Files
pancake-tui/tsconfig.json
2024-11-01 15:42:50 -05:00

27 lines
642 B
JSON

{
"compilerOptions": {
"lib": ["ES2022"],
"target": "es2022",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"tsBuildInfoFile": null,
"jsx": "react-jsx"
},
"include": [
"**/*.ts"
, "src/index.tsx", "src/components/mainNav.tsx", "src/components/detailsInvoice.tsx", "src/components/listClients.tsx" ],
"exclude": [
"node_modules",
"**/mocks/**/*",
"**/*.test.ts",
"**/*.spec.ts",
]
}