1
0
mirror of https://github.com/upscayl/upscayl.git synced 2024-11-12 01:40:53 +01:00
upscayl/tsconfig.json

16 lines
380 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,
"skipLibCheck": true
2022-11-11 21:39:28 +01:00
},
2023-10-25 13:44:22 +02:00
"include": ["./electron/**/*", "./common/**/*"],
2022-11-11 21:39:28 +01:00
"exclude": ["node_modules", "public", "renderer"]
}