Website/app/tsconfig.json

22 lines
472 B
JSON
Raw Normal View History

2024-02-04 04:39:13 +00:00
{
"compilerOptions": {
"target": "ES6",
"module": "ESNext",
"moduleResolution": "node",
"allowJs": true,
"noImplicitAny": true,
"strict": true,
"allowSyntheticDefaultImports": true,
2024-04-22 18:52:51 +00:00
"esModuleInterop": true,
"baseUrl": "./",
"paths": {
"@src/*": ["./*"],
"@packages/*": ["./packages/*"],
"@controllers/*": ["./controllers/*"],
"@styles/*": ["./styles/*"],
}
2024-02-04 04:39:13 +00:00
},
"files": [
2024-04-22 18:52:51 +00:00
".assets/**/*.ts"
2024-02-04 04:39:13 +00:00
]
}