2021-04-12 02:07:18 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2021-09-21 11:43:55 +03:00
|
|
|
"allowJs": true,
|
2023-02-21 11:25:00 +04:00
|
|
|
"target": "ESNext",
|
|
|
|
"module": "ESNext",
|
|
|
|
"lib": ["es2015", "dom"],
|
2021-04-12 02:07:18 +03:00
|
|
|
"declaration": true,
|
|
|
|
"outDir": "dist",
|
2023-02-21 11:25:00 +04:00
|
|
|
"moduleResolution": "nodenext",
|
2021-04-12 02:07:18 +03:00
|
|
|
"strict": true,
|
|
|
|
"esModuleInterop": true,
|
2021-09-08 13:00:24 +03:00
|
|
|
"noImplicitAny": false,
|
2023-02-22 15:15:11 +04:00
|
|
|
"strictNullChecks": false,
|
|
|
|
"skipLibCheck": true
|
2021-04-12 02:07:18 +03:00
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
2021-04-26 19:14:07 +03:00
|
|
|
"dist",
|
2023-02-21 11:25:00 +04:00
|
|
|
"bundle"
|
2021-04-26 19:14:07 +03:00
|
|
|
],
|
|
|
|
"include": ["src/**/*"]
|
2022-09-26 16:47:52 +03:00
|
|
|
}
|