2019-07-21 17:59:47 +03:00
|
|
|
{
|
2019-09-08 13:37:07 -04:00
|
|
|
"compilerOptions": {
|
|
|
|
"module": "commonjs",
|
2020-11-02 19:11:04 +07:00
|
|
|
"target": "esnext",
|
2022-07-07 12:21:30 -07:00
|
|
|
"types": ["node", "jest"],
|
2021-12-09 13:24:29 +04:00
|
|
|
"lib": ["es2019", "dom"],
|
2019-09-08 13:37:07 -04:00
|
|
|
"strict": true,
|
2023-03-19 13:04:36 +09:00
|
|
|
"skipLibCheck": true,
|
2019-09-08 13:37:07 -04:00
|
|
|
"noImplicitAny": false,
|
|
|
|
"sourceMap": false,
|
|
|
|
"outDir": "dist",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"typeRoots": [
|
|
|
|
"node_modules/@types"
|
2022-02-03 23:16:30 -08:00
|
|
|
],
|
2022-06-27 21:28:21 -07:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2022-08-29 23:36:18 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowJs": true,
|
2019-09-08 13:37:07 -04:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts"
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"dist/**"
|
|
|
|
]
|
2022-07-07 12:21:30 -07:00
|
|
|
}
|