18 lines
411 B
JSON
18 lines
411 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"
|
|
]
|
|
}
|