Website/app/frontend/tsconfig.json

40 lines
700 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": {
"~*": [
".*"
],
2024-07-21 12:03:21 +00:00
"@components/*": [
"./templates/components/*"
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-21 12:03:21 +00:00
"@styles/*": [
"./styles/*"
],
2024-07-14 14:26:52 +00:00
"@pkg/*": [
2024-07-12 22:56:04 +00:00
"./packages/*"
],
"#types/*": [
"./types/*"
2024-07-21 12:03:21 +00:00
],
"#const/*": [
"./types/constants/*"
2024-07-12 22:56:04 +00:00
]
}
},
"include": [
2024-07-14 14:26:52 +00:00
"./**/*.ts"
]
2024-07-12 22:56:04 +00:00
}