first commit
This commit is contained in:
32
tsconfig.json
Normal file
32
tsconfig.json
Normal file
@@ -0,0 +1,32 @@
|
||||
/**
|
||||
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",
|
||||
]
|
||||
}
|
||||
Reference in New Issue
Block a user