Website/app/frontend/tsconfig.json
Snoweuph 777d001785
All checks were successful
Quality Check / QS Backend (push) Successful in 20s
Quality Check / QS Mixed (push) Successful in 32s
Quality Check / QS Frontend (push) Successful in 38s
Use Symfony UX Twig
2024-07-20 08:50:38 +02:00

36 lines
641 B
JSON

{
"compilerOptions": {
"target": "ES6",
"module": "ESNext",
"moduleResolution": "node",
"allowJs": false,
"noImplicitAny": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"baseUrl": "./",
"paths": {
"~*": [
".*"
],
"@components/*": [
"./templates/components/*"
],
"@controllers/*": [
"./controllers/*"
],
"@styles/*": [
"./styles/*"
],
"@pkg/*": [
"./packages/*"
],
"#types/*": [
"./types/*"
]
}
},
"include": [
"./**/*.ts"
]
}