2018-02-20 21:48:29 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2024-08-06 21:16:38 +03:00
|
|
|
"target": "es2022",
|
2020-12-16 20:32:17 +03:00
|
|
|
"module": "esnext",
|
2020-12-12 01:23:46 +03:00
|
|
|
"moduleResolution": "node",
|
2018-02-27 00:34:33 +03:00
|
|
|
"outDir": "./lib",
|
2018-02-20 21:48:29 +03:00
|
|
|
"strict": true,
|
2018-02-20 21:48:43 +03:00
|
|
|
"esModuleInterop": true,
|
2018-02-23 04:29:54 +03:00
|
|
|
"sourceMap": true,
|
|
|
|
"noUnusedLocals": true,
|
2021-03-04 04:15:16 +03:00
|
|
|
"noUnusedParameters": true,
|
|
|
|
"resolveJsonModule": true
|
2018-02-20 21:48:43 +03:00
|
|
|
},
|
2018-02-27 00:34:33 +03:00
|
|
|
"include": [
|
|
|
|
"./src"
|
2018-02-20 21:48:43 +03:00
|
|
|
]
|
2018-03-10 10:44:44 +03:00
|
|
|
}
|