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
|
|
|
]
|
|
|
|
}
|