antares/tsconfig.json

19 lines
413 B
JSON
Raw Normal View History

2022-04-12 17:04:11 +02:00
{
"include": ["./src/main/**/*", "src/common/interfaces/antares.ts"],
"compilerOptions": {
"baseUrl": "./",
"target": "es2021",
"allowJs": true,
"module": "CommonJS",
2022-04-12 17:04:11 +02:00
"noImplicitAny": true,
"types": [
"node"
],
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"removeComments": true,
"paths": {
"common/*": ["./src/common/*"]
}
}
}