UNPKG

startercodeforcicdpipeline

Version:

This is my starter code for my TYPESCRIPT CI CD PIPELINE

19 lines (17 loc) 1.53 kB
{ "compilerOptions": { "target": "es2016", /* Set the JavaScript language version for emitted JavaScript. */ "module": "commonjs", /* Specify module code generation. */ "outDir": "./dist", /* Redirect output structure to the `dist` directory. */ "rootDir": "./src", /* Specify the root directory of input files. */ "strict": true, /* Enable all strict type-checking options. */ "esModuleInterop": true, /* Enable compatibility for CommonJS modules using ES module imports. */ "forceConsistentCasingInFileNames": true, /* Ensure consistent casing in module imports. */ "skipLibCheck": true, /* Skip type checking of declaration files. */ "resolveJsonModule": true, /* Allow importing `.json` files as modules. */ "moduleResolution": "node", /* Use Node.js-style module resolution. */ "allowSyntheticDefaultImports": true /* Allow default imports from modules with no default export. */ }, "include": ["src/**/*", "src/index.ts"], /* Include all TypeScript files within the `src` directory. */ "exclude": ["node_modules", "dist"] /* Exclude `node_modules` and `dist` directories from compilation. */ }