Website/app/frontend/tsconfig.json
Snoweuph e776683a18
All checks were successful
Quality Check / QS Backend (push) Successful in 20s
Quality Check / QS Mixed (push) Successful in 35s
Quality Check / QS Frontend (push) Successful in 41s
#3: Setup Tailwind and Flowbite
2024-07-14 16:26:52 +02:00

39 lines
676 B
JSON

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