1
0
mirror of https://github.com/upscayl/upscayl.git synced 2025-02-14 18:02:38 +01:00
upscayl/tsconfig.json

27 lines
609 B
JSON
Raw Normal View History

2022-11-12 02:09:28 +05:30
{
"compilerOptions": {
2023-10-25 17:14:22 +05:30
"target": "es2016",
"module": "commonjs",
"rootDir": "./",
"outDir": "./export",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": false,
2024-04-17 21:48:45 +05:30
"skipLibCheck": true,
"paths": {
"@electron/*": ["./electron/*"],
"@/*": ["./renderer/*"],
"@common/*": ["./common/*"]
2024-04-17 21:48:45 +05:30
}
2022-11-12 02:09:28 +05:30
},
2024-12-15 14:25:18 +05:30
"include": [
"./electron/**/*",
"./common/**/*",
"./renderer/**/*",
"scripts/generate-schema.js",
"scripts/validate-schema.js"
],
2022-11-12 02:09:28 +05:30
"exclude": ["node_modules", "public", "renderer"]
}