2023-05-07 03:09:36 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./public/js/",
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"module": "es2020",
|
|
|
|
"target": "es2020",
|
|
|
|
"allowJs": true,
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"paths": {
|
|
|
|
"@burguillosinfo/*": ["js-src/*"],
|
|
|
|
"/*": ["js-src/*"]
|
|
|
|
},
|
|
|
|
"plugins": [
|
|
|
|
{
|
|
|
|
"transform": "typescript-transform-paths"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"transform": "typescript-transform-paths",
|
|
|
|
"afterDeclarations": true
|
|
|
|
}
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"include": [
|
2023-08-21 00:58:11 +02:00
|
|
|
"js-src/*.ts", "js-src/*/*.ts"
|
2023-05-07 03:09:36 +02:00
|
|
|
]
|
|
|
|
}
|