ci: Setup TS project references for nodes-base, and stop packaging tests in the npm package (no-changelog) (#5635)

This commit is contained in:
कारतोफ्फेलस्क्रिप्ट™
2023-03-08 14:33:13 +01:00
committed by GitHub
parent 0d49ad8b93
commit 0b6fa6b20e
3 changed files with 23 additions and 7 deletions

View File

@@ -0,0 +1,16 @@
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "dist",
"types": ["node"],
"noEmit": false,
"tsBuildInfoFile": "dist/build.tsbuildinfo"
},
"include": [
"credentials/**/*.ts",
"nodes/**/*.ts",
"nodes/**/*.json",
"credentials/translations/**/*.json"
],
"exclude": ["nodes/**/*.test.ts", "test/**"]
}