mizar/tsconfig.json

27 lines
542 B
JSON
Raw Permalink Normal View History

2023-03-19 18:40:03 +01:00
{
"include": [
"./tests/**/*",
"./src/main/**/*",
2023-04-02 10:06:25 +02:00
"./src/renderer/**/*",
"./src/common/**/*"
2023-03-19 18:40:03 +01:00
],
"compilerOptions": {
"baseUrl": "./",
"target": "es2021",
"allowJs": true,
"module": "CommonJS",
"noImplicitAny": true,
"jsx": "preserve",
"types": [
"node"
],
"sourceMap": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"removeComments": true,
"paths": {
2023-04-02 10:06:25 +02:00
"common/*": ["./src/common/*"],
2023-03-19 18:40:03 +01:00
"@/*": ["./src/renderer/*"],
}
}
}