2021-03-07 15:52:17 +08:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"noImplicitAny": true,
|
2021-03-16 12:40:23 +08:00
|
|
|
"outDir": "build/types",
|
2021-03-07 15:52:17 +08:00
|
|
|
"module": "esnext",
|
|
|
|
"target": "es5",
|
|
|
|
"allowJs": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"declaration": true,
|
|
|
|
"emitDeclarationOnly": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
2021-03-16 12:40:23 +08:00
|
|
|
"lib": ["es2020", "dom"],
|
2021-03-07 15:52:17 +08:00
|
|
|
"moduleResolution": "node",
|
2021-04-05 01:28:10 +08:00
|
|
|
"downlevelIteration": true,
|
|
|
|
"strict": true
|
2021-03-07 15:52:17 +08:00
|
|
|
},
|
|
|
|
"include": ["src/lib"],
|
2021-03-16 12:40:23 +08:00
|
|
|
"exclude": ["src/lib/**/tests"],
|
2021-03-07 15:52:17 +08:00
|
|
|
}
|