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