File Is Not Included In Any Tsconfig.json Apr 2026

"files": [], "references": [ "path": "./packages/core" , "path": "./packages/web" , "path": "./scripts" ]

// scripts/tsconfig.json

"compilerOptions": "rootDir": "./src", "outDir": "./dist" , "include": ["src/**/*"] file is not included in any tsconfig.json

Move the problematic file into an already-included directory:

"compilerOptions": "strict": true, "esModuleInterop": true, "skipLibCheck": true, "forceConsistentCasingInFileNames": true "files": [], "references": [ "path": "

// tsconfig.json

"compilerOptions": "target": "ES2020" , "files": [ "src/index.ts", "src/utils/helper.ts", "scripts/deploy.ts" // Your specific file ] "references": [ "path": "./packages/core"

"extends": "../../tsconfig.base.json", "compilerOptions": "composite": true, "outDir": "./dist" , "include": ["src/**/*"], "references": [ "path": "../shared" ]

// packages/api/tsconfig.json

"extends": "../tsconfig.base.json", "compilerOptions": "outDir": "../dist/scripts" , "include": ["**/*.ts"], "exclude": ["node_modules"]

"extends": "./tsconfig.base.json", "include": ["src/**/*"]