mirror of https://github.com/Fabio286/antares.git
24 lines
472 B
JSON
24 lines
472 B
JSON
{
|
|
"include": [
|
|
"./tests/**/*",
|
|
"./src/main/**/*",
|
|
"./src/common/interfaces/antares.ts"
|
|
],
|
|
"compilerOptions": {
|
|
"baseUrl": "./",
|
|
"target": "es2021",
|
|
"allowJs": true,
|
|
"module": "CommonJS",
|
|
"noImplicitAny": true,
|
|
"types": [
|
|
"node"
|
|
],
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"removeComments": true,
|
|
"paths": {
|
|
"common/*": ["./src/common/*"]
|
|
}
|
|
}
|
|
} |