You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
lossless-cut/tsconfig.main.json

21 lines
458 B
JSON

{
"extends": ["@tsconfig/strictest"],
"compilerOptions": {
"composite": true,
"emitDeclarationOnly": true,
"outDir": "main-ts-dist",
"tsBuildInfoFile": "main-ts-dist/tsconfig.tsbuildinfo",
"lib": ["ES2024"],
"target": "ESNext",
"module": "ESNext",
"moduleResolution": "Bundler",
"types": ["vite/client"],
},
"references": [
{ "path": "./tsconfig.common.json" },
],
"include": [
"src/main/**/*",
],
}