this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

move incremental to tsconfig

+2 -1
+1 -1
package.json
··· 31 31 "_eslint": "eslint --cache --cache-strategy=content", 32 32 "_knip": "knip --cache", 33 33 "_prettier": "prettier --cache .", 34 - "_typescript": "tsc --incremental", 34 + "_typescript": "tsc", 35 35 "build": "rm -fr distribution tsconfig.tsbuildinfo && npm run _typescript", 36 36 "format:check": "npm run _prettier -- --check", 37 37 "format:fix": "npm run _prettier -- --write",
+1
tsconfig.json
··· 5 5 "rootDir": "source", 6 6 "outDir": "distribution", 7 7 "declaration": true, 8 + "incremental": true, 8 9 9 10 // more strictness 10 11 "forceConsistentCasingInFileNames": true,