16 lines
397 B
JSON
16 lines
397 B
JSON
{
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"target": "ESNext",
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"moduleResolution": "bundler",
|
|
"lib": [
|
|
"DOM", // to get `fetch` & `WebSocket`
|
|
"ES2024"
|
|
],
|
|
"declaration": true,
|
|
"declarationDir": "./dist/types"
|
|
},
|
|
"exclude": ["./dist"]
|
|
}
|