Files
pancake-tui/tsconfig.json
2024-04-19 14:08:59 -06:00

33 lines
665 B
JSON

/**
Super-special config for our tRPC Lambda 🌸
Reference:
https://aka.ms/tsconfig
*/
{
"compilerOptions": {
// TODO: This does not work! Hono complains about not finding React...
"lib": ["ES2022"],
"target": "ESNext",
"module": "NodeNext",
"moduleResolution": "NodeNext",
"esModuleInterop": false,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"noEmit": true,
"tsBuildInfoFile": null
},
"include": [
"**/*.ts"
],
"exclude": [
"node_modules",
"**/mocks/**/*",
"**/*.test.ts",
"**/*.spec.ts",
]
}