2023-01-27 03:09:09 +03:00
|
|
|
{
|
2023-09-22 06:43:25 +03:00
|
|
|
"include": ["src/**/*", "src/**/*.json"],
|
2023-01-27 03:09:09 +03:00
|
|
|
"compilerOptions": {
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"baseUrl": "./src",
|
2023-02-19 03:37:58 +03:00
|
|
|
"declaration": true,
|
|
|
|
"declarationMap": true,
|
2023-01-27 03:09:09 +03:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"inlineSourceMap": true,
|
2024-07-05 14:13:04 +03:00
|
|
|
"lib": ["ES2021", "dom", "DOM.Iterable"],
|
2023-01-27 03:09:09 +03:00
|
|
|
"module": "ESNext",
|
2023-09-22 06:43:25 +03:00
|
|
|
"moduleResolution": "Bundler",
|
|
|
|
"composite": true,
|
2023-01-27 03:09:09 +03:00
|
|
|
"noImplicitOverride": true,
|
|
|
|
"noUncheckedIndexedAccess": true,
|
2023-02-19 03:37:58 +03:00
|
|
|
"outDir": "dist",
|
2023-01-27 03:09:09 +03:00
|
|
|
"removeComments": true,
|
|
|
|
"resolveJsonModule": true,
|
2023-02-19 03:37:58 +03:00
|
|
|
"rootDir": "src",
|
|
|
|
"skipLibCheck": true,
|
2023-01-27 03:09:09 +03:00
|
|
|
"strict": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"strictPropertyInitialization": true,
|
2023-02-19 03:37:58 +03:00
|
|
|
"target": "ES2019"
|
2023-01-27 03:09:09 +03:00
|
|
|
}
|
|
|
|
}
|