2026-08-18 00:38:08 +04:00
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"target": "ES2022",
|
|
|
|
|
"module": "ES2022",
|
|
|
|
|
"moduleResolution": "bundler",
|
|
|
|
|
"declaration": true,
|
|
|
|
|
"outDir": "dist",
|
|
|
|
|
"rootDir": "src",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"experimentalDecorators": true,
|
2026-08-21 08:08:42 +04:00
|
|
|
"useDefineForClassFields": false,
|
|
|
|
|
"lib": ["ES2022", "DOM"]
|
2026-08-18 00:38:08 +04:00
|
|
|
},
|
2026-08-21 08:08:42 +04:00
|
|
|
"angularCompilerOptions": {
|
|
|
|
|
"compilationMode": "partial",
|
|
|
|
|
"strictTemplates": true
|
|
|
|
|
},
|
|
|
|
|
"include": ["src/**/*.ts"]
|
2026-08-18 00:38:08 +04:00
|
|
|
}
|