1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-14 05:04:02 +02:00

Move 'exclude' option in tsconfig.json out of 'compilerOptions (#3479)

This commit is contained in:
Bernd Hobbie
2023-02-25 19:44:43 +01:00
committed by GitHub
parent 831521ae10
commit ed07d34d64

View File

@@ -23,10 +23,10 @@ npm install --save-dev typescript
"module": "commonjs", "module": "commonjs",
"strict": true, "strict": true,
"outDir": "./dist", "outDir": "./dist",
"rootDir": "./src", "rootDir": "./src"
},
"exclude": ["node_modules"] "exclude": ["node_modules"]
} }
}
``` ```
- Compile your TypeScript code using the following command: - Compile your TypeScript code using the following command: