Website/app/frontend/tsconfig.json

35 lines
602 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": {
"~*": [
".*"
],
"#components/*": [
"./controllers/*"
2024-07-12 22:56:04 +00:00
],
"#controllers/*": [
2024-07-12 22:56:04 +00:00
"./controllers/*"
],
"#pkg/*": [
2024-07-12 22:56:04 +00:00
"./packages/*"
],
"#types/*": [
"./types/*"
]
}
},
"include": [
"./**/*.ts",
"./**/*.svelte"
2024-07-14 14:26:52 +00:00
]
2024-07-12 22:56:04 +00:00
}