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

20 lines
490 B
JSON

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