2023-09-30 21:13:40 +02:00
|
|
|
{
|
|
|
|
"include": ["src/**/*", "types/**/*"],
|
|
|
|
"compilerOptions": {
|
2024-05-29 02:17:29 +02:00
|
|
|
"target": "es6",
|
2023-09-30 21:13:40 +02:00
|
|
|
"module": "commonjs",
|
2023-11-30 03:23:47 +01:00
|
|
|
"jsx": "preserve",
|
2024-05-29 02:17:29 +02:00
|
|
|
"lib": ["ES2022"],
|
2023-09-30 21:13:40 +02:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"resolveJsonModule": true,
|
2023-11-07 09:04:25 +01:00
|
|
|
"isolatedModules": true,
|
2023-11-30 03:23:47 +01:00
|
|
|
"experimentalDecorators": true,
|
2024-02-13 07:47:51 +01:00
|
|
|
"downlevelIteration": true,
|
|
|
|
"baseUrl": "./",
|
2024-05-29 02:17:29 +02:00
|
|
|
"types": ["@withfig/autocomplete-types"],
|
2024-02-13 07:47:51 +01:00
|
|
|
"paths": {
|
2024-05-29 02:17:29 +02:00
|
|
|
"@/app/*": ["src/app/*"], // Points to the app folder
|
|
|
|
"@/util/*": ["src/util/*"], // Points to the util folder
|
|
|
|
"@/models": ["src/models/index"], // Points directly to the models index file
|
2024-02-13 07:47:51 +01:00
|
|
|
"@/models/*": ["src/models/*"], // For everything else inside models
|
2024-05-29 02:17:29 +02:00
|
|
|
"@/common/*": ["src/app/common/*"], // For everything else inside common
|
|
|
|
"@/elements": ["src/app/common/elements/index"], // Points directly to the elements index file
|
|
|
|
"@/elements/*": ["src/app/common/elements/*"], // For everything else inside elements
|
|
|
|
"@/modals": ["src/app/common/modals/index"], // Points directly to the modals index file
|
|
|
|
"@/modals/*": ["src/app/common/modals/*"], // For everything else inside modals
|
|
|
|
"@/assets/*": ["src/app/assets/*"], // For everything else inside assets
|
|
|
|
"@/plugins/*": ["src/plugins/*"], // For everything else inside plugins
|
|
|
|
"@/autocomplete": ["src/autocomplete/index"], // Points directly to the autocomplete index file
|
|
|
|
"@/autocomplete/*": ["src/autocomplete/*"], // For everything else inside autocomplete
|
2024-02-13 07:47:51 +01:00
|
|
|
}
|
2023-09-30 21:13:40 +02:00
|
|
|
}
|
|
|
|
}
|