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.

13 lines 244 B
{ "extends": "./tsconfig.json", "compilerOptions": { "module": "CommonJS", "moduleResolution": "Node10", "outDir": "./dist/cjs", "declarationDir": "./dist/cjs", "target": "ES2015" }, "include": [ "src/**/*" ] }