2019-06-05 01:02:29 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./lib",
|
2023-05-02 08:12:45 +03:00
|
|
|
// compatible with node 14
|
|
|
|
"target": "ES2020",
|
2019-06-05 01:02:29 +03:00
|
|
|
"module": "commonjs",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
2020-01-17 21:11:05 +03:00
|
|
|
"sourceMap": true,
|
2019-06-05 01:02:29 +03:00
|
|
|
"strict": true,
|
2020-04-21 03:09:33 +03:00
|
|
|
"noUnusedLocals": true,
|
2021-07-29 00:52:44 +03:00
|
|
|
"forceConsistentCasingInFileNames": true,
|
2019-06-22 09:19:23 +03:00
|
|
|
"esModuleInterop": true,
|
2022-08-11 01:21:57 +03:00
|
|
|
"allowJs": true,
|
|
|
|
"checkJs": true,
|
2022-09-10 02:38:35 +03:00
|
|
|
"skipLibCheck": true,
|
2023-05-02 08:12:45 +03:00
|
|
|
"lib": ["ES2020"],
|
2022-09-10 02:38:35 +03:00
|
|
|
"types": ["node"]
|
2019-06-05 01:02:29 +03:00
|
|
|
},
|
|
|
|
"include": ["src/**/*"]
|
|
|
|
}
|