mirror of
https://github.com/hexastack/hexabot
synced 2024-11-23 01:55:15 +00:00
16 lines
406 B
JSON
16 lines
406 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ES2020", // Change to ES2020 or ESNext
|
|
"moduleResolution": "node", // Ensure module resolution is node
|
|
"rootDir": "./src",
|
|
"outDir": "./dist",
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"skipLibCheck": true
|
|
},
|
|
"include": ["src"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|