Jump to content

File Is Not Included In Any Tsconfig.json Apr 2026

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

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

"extends": "./tsconfig.base.json", "include": ["src/**/*"] file is not included in any tsconfig.json

// scripts/tsconfig.json

# Instead of: project/tool.ts # Move to: project/src/tool.ts mv tool.ts src/ Common include patterns: "include": [ "src/**/*.ts", // All TS files in src "src/**/*.tsx", // React TSX files "test/**/*.spec.ts", // Test files "config/*.ts" // Root config files ] "files": [], "references": [ "path": "

"typescript.tsserver.experimental.enableProjectDiagnostics": true, "typescript.tsserver.maxTsServerMemory": 4096

// packages/api/tsconfig.json

"compilerOptions": "rootDir": "./src", "outDir": "./dist" , "include": ["src/**/*"]

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.