Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Support ambient types in dev environment by default #2473

Merged
merged 4 commits into from
Oct 21, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
3 changes: 2 additions & 1 deletion packages/cli/_templates/app/base/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,8 @@ module.exports = {
'@types/mocha',
feathers.framework === 'koa' ? '@types/koa-static' : '@types/compression',
'@types/node',
'ts-node-dev',
'nodemon',
'ts-node',
'typescript',
'shx'
);
Expand Down
2 changes: 1 addition & 1 deletion packages/cli/_templates/app/base/ts/package.json.t
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const pkg = {
...h.pkg,
scripts: {
...h.pkg.scripts,
dev: 'ts-node-dev --no-notify ${h.lib}/',
dev: 'nodemon -x ts-node ${h.lib}/index.ts',
compile: 'shx rm -rf lib/ && tsc',
start: 'npm run compile && node lib/',
test: 'mocha test/ --require ts-node/register --recursive --extension .ts --exit'
Expand Down
7 changes: 5 additions & 2 deletions packages/cli/_templates/app/base/ts/tsconfig.json.t
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,11 @@
to: "tsconfig.json"
---
{
"ts-node": {
"files": true
},
"compilerOptions": {
"target": "es2018",
"target": "es2020",
"module": "commonjs",
"outDir": "./lib",
"rootDir": "./<%= h.lib %>",
Expand All @@ -13,4 +16,4 @@ to: "tsconfig.json"
"exclude": [
"test"
]
}
}