mizar/tsconfig.json

28 lines
604 B
JSON
Raw Normal View History

2023-03-19 18:40:03 +01:00
{
"include": [
"./tests/**/*",
"./src/main/**/*",
"./src/renderer/**/*",
"./src/common/**/*",
],
"exclude": ["./src/renderer/libs/ext-language_tools.js"],
"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/*"],
}
}
}