2021-04-08 12:19:38 +03:00
|
|
|
{
|
2024-08-13 04:53:07 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"target": "es2022",
|
|
|
|
"lib": [
|
|
|
|
"es2020",
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"WebWorker"
|
|
|
|
],
|
|
|
|
"useDefineForClassFields": true,
|
2024-08-21 11:05:07 +03:00
|
|
|
"module": "ESNext",
|
|
|
|
"moduleResolution": "Bundler",
|
2024-08-13 04:53:07 +03:00
|
|
|
"resolveJsonModule": true,
|
|
|
|
"types": [
|
2024-11-26 20:21:47 +03:00
|
|
|
"bun",
|
2024-08-13 04:53:07 +03:00
|
|
|
"node",
|
|
|
|
"deno/ns",
|
|
|
|
"vite/client"
|
|
|
|
],
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"declaration": true,
|
|
|
|
"inlineSources": true,
|
2024-08-21 11:05:07 +03:00
|
|
|
"noEmit": true,
|
2024-08-13 04:53:07 +03:00
|
|
|
"sourceMap": true,
|
|
|
|
"stripInternal": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"esModuleInterop": true,
|
2024-08-18 09:31:23 +03:00
|
|
|
"isolatedDeclarations": true,
|
2024-08-13 04:53:07 +03:00
|
|
|
"isolatedModules": true,
|
|
|
|
"skipLibCheck": true
|
|
|
|
},
|
|
|
|
"exclude": [
|
2024-08-21 11:05:07 +03:00
|
|
|
"e2e/",
|
2024-08-13 04:53:07 +03:00
|
|
|
"**/node_modules",
|
2024-08-21 11:05:07 +03:00
|
|
|
"**/private",
|
2024-08-13 04:53:07 +03:00
|
|
|
"**/__snapshots__"
|
|
|
|
]
|
2021-04-08 12:19:38 +03:00
|
|
|
}
|