We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 79954b7 commit 7fb6e11Copy full SHA for 7fb6e11
1 file changed
tsconfig.json
@@ -3,11 +3,16 @@
3
"target": "ES2022",
4
"module": "NodeNext",
5
"moduleResolution": "NodeNext",
6
- "outDir": "dist",
7
- "rootDir": "src/business-hotels-mcp",
+ "lib": ["ES2022"],
+ "declaration": true,
8
+ "sourceMap": true,
9
+ "outDir": "./dist",
10
+ "rootDir": "./src",
11
"strict": true,
12
+ "esModuleInterop": true,
13
"skipLibCheck": true,
- "esModuleInterop": true
14
+ "forceConsistentCasingInFileNames": true
15
},
- "include": ["src/business-hotels-mcp/index.ts"]
16
+ "include": ["src/**/*"],
17
+ "exclude": ["node_modules", "dist"]
18
}
0 commit comments