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