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

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