1
0
mirror of synced 2025-11-08 04:48:04 +00:00
Files
typescript-starter/tsconfig.module.json
Jason Dreyzehner 260a7d37bb feat(CLI): v2
2018-03-10 14:01:34 -05:00

15 lines
360 B
JSON

{
"extends": "./tsconfig",
"compilerOptions": {
"target": "esnext",
"outDir": "build/module",
"module": "esnext"
},
"exclude": [
"node_modules/**",
// typescript-starter: exclude CLI from module build, since it's exclusively
// for Node.js. (This should also be stripped from the generated project.)
"src/cli/**/*.ts"
]
}