2021-04-04 21:35:27 +05:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2022-06-15 18:10:26 +05:00
|
|
|
"target": "ES2020",
|
2021-04-04 21:35:27 +05:00
|
|
|
"module": "commonjs",
|
|
|
|
"declaration": true,
|
2021-08-05 14:05:42 +05:00
|
|
|
"outDir": "./dist",
|
2021-04-04 21:35:27 +05:00
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": false,
|
2021-06-30 10:52:16 +05:00
|
|
|
"esModuleInterop": true,
|
2021-08-05 13:42:49 +05:00
|
|
|
"pretty": true,
|
2021-11-05 11:36:22 +05:00
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"importHelpers": true
|
2021-04-04 21:35:27 +05:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*"
|
|
|
|
]
|
2020-11-01 20:19:41 +05:00
|
|
|
}
|