antares/tsconfig.json

28 lines
604 B
JSON
Raw Normal View History

2022-04-12 17:04:11 +02:00
{
2022-04-25 18:26:11 +02:00
"include": [
"./tests/**/*",
"./src/main/**/*",
2022-05-09 11:48:30 +02:00
"./src/renderer/**/*",
2022-08-09 17:28:33 +02:00
"./src/common/**/*",
],
2022-07-02 15:30:36 +02:00
"exclude": ["./src/renderer/libs/ext-language_tools.js"],
2022-04-12 17:04:11 +02:00
"compilerOptions": {
"baseUrl": "./",
"target": "es2021",
"allowJs": true,
"module": "CommonJS",
2022-04-12 17:04:11 +02:00
"noImplicitAny": true,
2022-05-10 12:57:25 +02:00
"jsx": "preserve",
2022-04-12 17:04:11 +02:00
"types": [
"node"
],
2022-04-14 09:15:16 +02:00
"sourceMap": true,
2022-04-12 17:04:11 +02:00
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"removeComments": true,
"paths": {
2022-05-10 12:57:25 +02:00
"common/*": ["./src/common/*"],
"@/*": ["./src/renderer/*"],
2022-04-12 17:04:11 +02:00
}
}
}