2019-10-03 02:58:00 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-04-30 08:10:24 +00:00
|
|
|
"strict": true,
|
|
|
|
|
2019-10-03 02:58:00 +00:00
|
|
|
"target": "es2017",
|
2019-10-03 04:08:16 +00:00
|
|
|
"module": "commonjs",
|
2019-10-03 02:58:00 +00:00
|
|
|
"lib": ["esnext", "dom"],
|
|
|
|
|
2019-10-03 04:08:16 +00:00
|
|
|
"rootDir": "src",
|
2019-10-03 02:58:00 +00:00
|
|
|
"outDir": "dist",
|
|
|
|
|
|
|
|
"sourceMap":true,
|
2019-10-03 04:31:17 +00:00
|
|
|
"declaration": true,
|
2019-10-03 02:58:00 +00:00
|
|
|
|
2019-10-03 04:08:16 +00:00
|
|
|
"resolveJsonModule": true,
|
2019-10-03 02:58:00 +00:00
|
|
|
"experimentalDecorators": true,
|
2022-04-30 08:10:24 +00:00
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
2019-10-03 04:08:16 +00:00
|
|
|
},
|
|
|
|
"include": ["src"]
|
2019-10-03 02:58:00 +00:00
|
|
|
}
|