UNPKG

@mccann-hub/create-typescript-template

Version:

CLI tool to initialize a TypeScript project with dual CommonJS and ESM support, path aliases, unit testing, and linting for NPM publishing.

33 lines 526 B
{ "extends": "./tsconfig.json", "compilerOptions": { "module": "CommonJS", "target": "ES2020", "outDir": "./dist/test", "rootDir": "./", "noEmit": false, "types": [ "node", "mocha" ], "sourceMap": true, "baseUrl": ".", "paths": { "@/*": [ "src/*" ], "@utils/*": [ "src/utils/*" ] }, "esModuleInterop": true }, "include": [ "src/**/*.ts", "tests/**/*.ts" ], "exclude": [ "node_modules", "dist" ] }