microservices/gameboard-service/tsconfig.json

23 lines
425 B
JSON
Raw Normal View History

2025-04-22 11:59:50 -07:00
{
"extends": "./.svelte-kit/tsconfig.json",
"compilerOptions": {
"allowJs": true,
"checkJs": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"sourceMap": true,
"strict": true,
"lib": [
// at() support
"ES2022",
// svelte-kit libs
"esnext",
"DOM",
"DOM.Iterable"
]
}
}