chat-relay/api-relay-server/tsconfig.json

20 lines
393 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"module": "CommonJS",
"moduleResolution": "node",
"outDir": "./dist",
"rootDir": "./src",
"strict": true,
"esModuleInterop": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true // Add this line
},
"include": [
"src/**/*"
],
"exclude": [
"node_modules"
]
}