chore: simplify TypeScript configs, use TS 5.5 configDir placeholder (#10256)

This commit is contained in:
Sébastien Lorber 2024-07-01 17:34:40 +02:00 committed by GitHub
parent aab1f4868b
commit 6dd9a5076e
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
54 changed files with 45 additions and 247 deletions

View file

@ -2,11 +2,7 @@
"extends": "../../tsconfig.base.json",
"compilerOptions": {
"noEmit": false,
"composite": true,
"incremental": true,
"tsBuildInfoFile": "lib/.tsbuildinfo",
"rootDir": "src",
"outDir": "lib"
"tsBuildInfoFile": "lib/.tsbuildinfo-build"
},
"include": ["src"],
"exclude": ["templates/", "**/__tests__/**"]

View file

@ -5,6 +5,6 @@
"noEmit": true,
"rootDir": "."
},
"include": ["bin"],
"include": ["package.json", "bin"],
"exclude": ["**/__tests__/**"]
}