NodeJS 不要在dist文件夹中包含index.ejs文件

muk1a3rh  于 2023-06-05  发布在  Node.js
关注(0)|答案(1)|浏览(155)

tsconfig.json

{
  "compilerOptions": {
    "target": "es5",                          /* Specify ECMAScript target version: 'ES3' (default), 'ES5', 'ES2015', 'ES2016', 'ES2017', 'ES2018', 'ES2019', 'ES2020', or 'ESNEXT'. */
    "module": "commonjs",                     /* Specify module code generation: 'none', 'commonjs', 'amd', 'system', 'umd', 'es2015', 'es2020', or 'ESNext'. */
    "sourceMap": true,                     /* Generates corresponding '.map' file. */
    "outDir": "./dist",                        /* Redirect output structure to the directory. */
    "strict": true,                           /* Enable all strict type-checking options. */
    "moduleResolution": "node",            /* Specify module resolution strategy: 'node' (Node.js) or 'classic' (TypeScript pre-1.6). */
    "esModuleInterop": true,                  /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
    "experimentalDecorators": true,        /* Enables experimental support for ES7 decorators. */
    "skipLibCheck": true,                     /* Skip type checking of declaration files. */
    "forceConsistentCasingInFileNames": true  /* Disallow inconsistently-cased references to the same file. */
  },
  "include": ["src/**/*.ts"],
  "exclude": ["node_modules"]
}

错误

{“message”:“无法在视图目录“/var/www/tutor/dist/views”"中查找视图“index”,“code”:50000}

命令

tsc && node dist/app.js -> build dist文件夹
src > views > index.ejs
不要在dist文件夹中包含index.ejs文件。

ffvjumwh

ffvjumwh1#

我也有同样的问题。它通过设置dir来工作。
对我来说,/views文件夹在/src中。

app.set("views", "./src/views");
app.set('view engine', 'ejs');

重复问题:https://stackoverflow.com/a/51231280/3269542

相关问题