Website/app/frontend/tsconfig.json

40 lines
676 B
JSON
Raw Normal View History

2024-07-12 22:56:04 +00:00
{
"compilerOptions": {
"target": "ES6",
"module": "ESNext",
"moduleResolution": "node",
2024-07-14 14:26:52 +00:00
"allowJs": false,
2024-07-12 22:56:04 +00:00
"noImplicitAny": true,
"strict": true,
"allowSyntheticDefaultImports": true,
"esModuleInterop": true,
"baseUrl": "./",
"paths": {
"~*": [
".*"
],
"@styles/*": [
2024-07-13 10:32:40 +00:00
"./styles/*"
2024-07-12 22:56:04 +00:00
],
2024-07-14 14:26:52 +00:00
"@controllers/*": [
2024-07-12 22:56:04 +00:00
"./controllers/*"
],
2024-07-14 14:26:52 +00:00
"@pkg/*": [
2024-07-12 22:56:04 +00:00
"./packages/*"
],
2024-07-14 14:26:52 +00:00
"@domain/*": [
"./domain/*"
],
"@const/*": [
"./constants/*"
],
2024-07-12 22:56:04 +00:00
"#types/*": [
"./types/*"
]
}
},
"include": [
2024-07-14 14:26:52 +00:00
"./**/*.ts"
]
2024-07-12 22:56:04 +00:00
}