mirror of
https://github.com/upscayl/upscayl.git
synced 2024-11-12 01:40:53 +01:00
20 lines
490 B
JSON
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"]
|
|
}
|