A repo for programming exercises and solutions
Currently the project is setup to not emit any Javascript files by design. This can be changed in the future by using the following configuration in the tsconfig.json file:
// {
// Configuration rules to allow the compiler to emit Javascript files
// "compilerOptions": {
// ...other current config
// "module": "es2022", <---change
// "moduleResolution": "Bundler", <---change
// // "allowImportingTsExtensions": true, <---remove
// "noEmit": false, <---change
// //Build
// "outDir": "./dist", <---add
// ...other current config
// }
// }
Typescript list of recommended compiler options: text and base config options: text