Website/tsconfig.json
Snoweuph ee8012c4e0
All checks were successful
Quality Check / QS Backend (push) Successful in 16s
Quality Check / QS Frontend (push) Successful in 34s
NOTICKET: Refactor Project Layout
2024-07-30 05:59:42 +02:00

35 lines
666 B
JSON

{
"compilerOptions": {
"target": "ES6",
"module": "ESNext",
"moduleResolution": "node",
"allowJs": false,
"noImplicitAny": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"paths": {
"~*": [
"./src/*"
],
"@component/*": [
"./src/Component/*"
],
"@framework/*": [
"./src/Framework/*"
],
"@pkg/*": [
"./src/Framework/Package/*"
],
"#types/*": [
"./src/Framework/Types/*",
],
"#const/*": [
"./src/Framework/Constants/*",
]
}
},
"include": [
"./src/**/*.ts"
]
}