2021-04-08 12:19:38 +03:00
|
|
|
{
|
2024-08-13 04:53:07 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"incremental": true,
|
|
|
|
"composite": true,
|
|
|
|
"target": "es2022",
|
|
|
|
"lib": [
|
|
|
|
"es2020",
|
|
|
|
"dom",
|
|
|
|
"dom.iterable",
|
|
|
|
"WebWorker"
|
|
|
|
],
|
|
|
|
"useDefineForClassFields": true,
|
|
|
|
"module": "NodeNext",
|
|
|
|
"moduleResolution": "NodeNext",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"types": [
|
|
|
|
"node",
|
|
|
|
"deno/ns",
|
|
|
|
"vite/client"
|
|
|
|
],
|
|
|
|
"strict": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"declaration": true,
|
|
|
|
"inlineSources": true,
|
|
|
|
"outDir": "./dist",
|
|
|
|
"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
|
|
|
|
},
|
|
|
|
"ts-node": {
|
|
|
|
"esm": true,
|
|
|
|
"experimentalSpecifierResolution": "node"
|
|
|
|
},
|
|
|
|
"exclude": [
|
|
|
|
"**/node_modules",
|
|
|
|
"**/__snapshots__"
|
|
|
|
]
|
2021-04-08 12:19:38 +03:00
|
|
|
}
|