mirror of
https://github.com/upscayl/upscayl.git
synced 2025-01-31 12:13:43 +01:00
27 lines
609 B
JSON
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"]
|
|
}
|