Skip to content

Commit

Permalink
chore: update
Browse files Browse the repository at this point in the history
  • Loading branch information
czy88840616 committed Feb 1, 2024
1 parent 889d545 commit 31602ef
Show file tree
Hide file tree
Showing 8 changed files with 56 additions and 14 deletions.
5 changes: 4 additions & 1 deletion v3/midway-component/boilerplate/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@
"pretty": true,
"declaration": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist"
"outDir": "dist",
"rootDir": "src"
},
"exclude": [
"*.js",
"*.ts",
"dist",
"node_modules",
"test"
Expand Down
5 changes: 4 additions & 1 deletion v3/midway-framework-express/boilerplate/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,12 @@
"declaration": true,
"forceConsistentCasingInFileNames": true,
"typeRoots": [ "./typings", "./node_modules/@types"],
"outDir": "dist"
"outDir": "dist",
"rootDir": "src"
},
"exclude": [
"*.js",
"*.ts",
"dist",
"node_modules",
"test"
Expand Down
10 changes: 8 additions & 2 deletions v3/midway-framework-koa-esm/boilerplate/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@
"forceConsistentCasingInFileNames": true,
"typeRoots": [ "./typings", "./node_modules/@types"],
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["**/*.ts"]
"exclude": [
"*.js",
"*.ts",
"dist",
"node_modules",
"test"
]
}
10 changes: 8 additions & 2 deletions v3/midway-framework-koa/boilerplate/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@
"forceConsistentCasingInFileNames": true,
"typeRoots": [ "./typings", "./node_modules/@types"],
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["**/*.ts"]
"exclude": [
"*.js",
"*.ts",
"dist",
"node_modules",
"test"
]
}
10 changes: 8 additions & 2 deletions v3/midway-framework-web/boilerplate/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@
"forceConsistentCasingInFileNames": true,
"typeRoots": [ "./typings", "./node_modules/@types"],
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["**/*.ts"]
"exclude": [
"*.js",
"*.ts",
"dist",
"node_modules",
"test"
]
}
10 changes: 8 additions & 2 deletions v3/midway-quick-start/boilerplate/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,13 @@
"forceConsistentCasingInFileNames": true,
"typeRoots": [ "./typings", "./node_modules/@types"],
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["**/*.ts"]
"exclude": [
"*.js",
"*.ts",
"dist",
"node_modules",
"test"
]
}
10 changes: 8 additions & 2 deletions v3/midway-serverless-http-new-esm/boilerplate/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,13 @@
"forceConsistentCasingInFileNames": true,
"typeRoots": [ "./typings", "./node_modules/@types"],
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["**/*.ts"]
"exclude": [
"*.js",
"*.ts",
"dist",
"node_modules",
"test"
]
}
10 changes: 8 additions & 2 deletions v3/midway-serverless-http-new/boilerplate/tsconfig.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,13 @@
"declaration": true,
"forceConsistentCasingInFileNames": true,
"outDir": "dist",
"rootDir": "./src"
"rootDir": "src"
},
"include": ["**/*.ts"]
"exclude": [
"*.js",
"*.ts",
"dist",
"node_modules",
"test"
]
}

0 comments on commit 31602ef

Please sign in to comment.