2021-04-08 12:19:38 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-07-20 17:51:24 +03:00
|
|
|
"outDir": "./dist",
|
2023-10-16 19:23:53 +03:00
|
|
|
"module": "NodeNext",
|
|
|
|
"moduleResolution": "NodeNext",
|
2022-05-05 20:08:38 +03:00
|
|
|
"target": "es2020",
|
2021-04-08 12:19:38 +03:00
|
|
|
"allowJs": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"declaration": true,
|
|
|
|
"esModuleInterop": true,
|
2023-06-12 23:28:30 +03:00
|
|
|
"allowSyntheticDefaultImports": true,
|
2021-07-30 17:40:50 +03:00
|
|
|
"strict": true,
|
2021-04-08 12:19:38 +03:00
|
|
|
"noImplicitAny": true,
|
2021-07-30 17:40:50 +03:00
|
|
|
"noImplicitThis": true,
|
2021-04-08 12:19:38 +03:00
|
|
|
"incremental": true,
|
2023-06-05 03:30:48 +03:00
|
|
|
"stripInternal": true,
|
|
|
|
"skipLibCheck": true,
|
2023-11-29 20:31:18 +03:00
|
|
|
"composite": true,
|
|
|
|
"types": [
|
|
|
|
"node",
|
|
|
|
"vite/client"
|
|
|
|
],
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"isolatedModules": true,
|
2021-04-08 12:19:38 +03:00
|
|
|
},
|
2023-07-20 17:51:24 +03:00
|
|
|
"ts-node": {
|
2023-10-16 19:23:53 +03:00
|
|
|
"esm": true,
|
|
|
|
"experimentalSpecifierResolution": "node"
|
2023-07-20 17:51:24 +03:00
|
|
|
},
|
2021-04-08 12:19:38 +03:00
|
|
|
"exclude": [
|
2023-09-21 00:47:57 +03:00
|
|
|
"**/node_modules",
|
2023-11-09 21:03:52 +03:00
|
|
|
"**/__snapshots__",
|
2021-04-08 12:19:38 +03:00
|
|
|
]
|
|
|
|
}
|