templates-mo
Version:
Templates is a scaffolding framework that makes code generation simple, dynamic, and reusable. Generate files, parts of your app, or whole project structures—without the repetitive copy-pasting
17 lines (16 loc) • 331 B
JSON
{
"extends": "./tsconfig.json",
"compilerOptions": {
"module": "ES6",
"declaration": false,
"baseUrl": ".",
"paths": {
"@tps/*": ["./src/*"],
"@test/*": ["./__tests__/*"],
"templates-mo/*": ["./*"],
"templates-mo": ["./"]
}
},
"include": ["./src/**/*", "./__tests__/**/*"],
"exclude": ["node_modules"]
}