2021-08-15 15:17:11 -07:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es5",
|
2021-08-17 18:19:15 -07:00
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
2021-08-15 15:17:11 -07:00
|
|
|
"declaration": true,
|
2021-11-21 16:18:37 -08:00
|
|
|
"outDir": "./lib/esm",
|
2021-08-15 15:17:11 -07:00
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"downlevelIteration": true,
|
2021-09-21 06:07:48 -07:00
|
|
|
"allowJs": true,
|
|
|
|
"lib": ["dom", "es5", "scripthost", "es2020.bigint"]
|
2021-08-15 15:17:11 -07:00
|
|
|
},
|
2021-08-17 18:19:15 -07:00
|
|
|
"include": ["src", "types"],
|
2021-08-15 15:17:11 -07:00
|
|
|
"exclude": ["node_modules", "**/__tests__/*"]
|
2021-09-21 06:07:48 -07:00
|
|
|
}
|