1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-09-23 19:08:25 +02:00
upscayl/tsconfig.json

20 lines
490 B
JSON
Raw Normal View History

2022-11-11 21:39:28 +01:00
{
"compilerOptions": {
2023-10-25 13:44:22 +02:00
"target": "es2016",
"module": "commonjs",
"rootDir": "./",
"outDir": "./export",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitAny": false,
2024-04-17 18:18:45 +02:00
"skipLibCheck": true,
"paths": {
"@electron/*": ["./electron/*"],
"@/*": ["./renderer/*"]
}
2022-11-11 21:39:28 +01:00
},
2024-04-17 18:18:45 +02:00
"include": ["./electron/**/*", "./common/**/*", "./renderer/**/*"],
2022-11-11 21:39:28 +01:00
"exclude": ["node_modules", "public", "renderer"]
}