1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-01-31 12:13:43 +01:00
upscayl/tsconfig.json
2024-12-15 14:25:18 +05:30

27 lines
609 B
JSON

{
"compilerOptions": {
"target": "es2016",
"module": "commonjs",
"rootDir": "./",
"outDir": "./export",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": false,
"skipLibCheck": true,
"paths": {
"@electron/*": ["./electron/*"],
"@/*": ["./renderer/*"],
"@common/*": ["./common/*"]
}
},
"include": [
"./electron/**/*",
"./common/**/*",
"./renderer/**/*",
"scripts/generate-schema.js",
"scripts/validate-schema.js"
],
"exclude": ["node_modules", "public", "renderer"]
}