repository template for Node.js & TypeScript projects
at main 308 B view raw
1{ 2 "compilerOptions": { 3 "module": "ESNext", 4 "moduleResolution": "Bundler" 5 }, 6 "typedocOptions": { 7 "out": "dist/typedoc", 8 "entryPoints": ["packages/*"], 9 "entryPointStrategy": "packages", 10 "includeVersion": false, 11 "lightHighlightTheme": "github-light", 12 "darkHighlightTheme": "github-dark" 13 } 14}