Website/tsconfig.json
Snoweuph 685e460bc7
Some checks failed
Quality Check / QS Backend (push) Successful in 16s
Quality Check / QS Frontend (push) Failing after 27s
NOTICKET: Refactor Project Layout
2024-07-30 05:42:19 +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"
]
}