Typescript + реагировать-создать-приложение с проблемой express - PullRequest
0 голосов
/ 28 апреля 2020

Я новичок в Typescript, поэтому я создал проектact-create-app, и у меня есть право знать, что я хочу подключить сервер с express.

Дело в том, что я создайте папку -> src / server / server.ts

, поэтому автоматически реагирует создает tsconfig. json, который:

{
 "compilerOptions": {
   "target": "es5",
   "lib": [
     "dom",
     "dom.iterable",
     "esnext"
   ],
   "allowJs": true,
   "skipLibCheck": true,
   "esModuleInterop": true,
   "allowSyntheticDefaultImports": true,
   "strict": true,
   "forceConsistentCasingInFileNames": true,
   "module": "esnext",
   "moduleResolution": "node",
   "resolveJsonModule": true,
   "isolatedModules": true,
   "noEmit": true,
   "jsx": "react"
 },
 "include": [
   "src"
 ],
 "exclude": ["src/server"]
}

Я добавил исключающую часть и создал другой tsconfig file

tsconfig.server. json

{
  "compilerOptions": {
    /* Basic Options */                 /* Enable incremental compilation */
    "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'. */                      /* Concatenate and emit output to single file. */
    "outDir": "./build",                        /* Redirect output structure to the directory. */
    "rootDir": "./src/server",                       /* Specify the root directory of input files. Use to control the output directory structure with --outDir. */
    /* Strict Type-Checking Options */
    "strict": true,                           /* Enable all strict type-checking options. */
    "esModuleInterop": true,                  /* Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
    /* Advanced Options */
    "forceConsistentCasingInFileNames": true  /* Disallow inconsistently-cased references to the same file. */
  },
  "extends": "./tsconfig.json"
}

, когда я набираю в командной строке ts c Я хочу, чтобы server.ts компилировался в папке сборки в root моего проекта, но, тем не менее, не работает.

это просто, ничего не делает.

Вы знаете, что я здесь делаю неправильно?

1 Ответ

0 голосов
/ 28 апреля 2020

Вам нужно использовать tsc --project --build для сборки, или, если вы разрабатываете, я бы порекомендовал вам использовать tsc --project --watch, который будет перекомпилироваться при каждом изменении файла.

Полный список параметров компилятора может можно найти здесь

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...