1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-09-02 22:02:39 +02:00

from inside compilerOptions to outside exclude (#4410)

This commit is contained in:
Mohit Rajput
2023-08-28 10:56:46 +05:30
committed by GitHub
parent c95caccae5
commit 7e18c97e78

View File

@@ -20,8 +20,8 @@ Given below is the sample `tsconfig.json` file:
"strict": true, "strict": true,
"outDir": "./dist", "outDir": "./dist",
"rootDir": "./src", "rootDir": "./src",
"exclude": ["node_modules"]
}, },
"exclude": ["node_modules"],
"include": ["src"] "include": ["src"]
} }
``` ```