Skip to content

Compare: stories rc.0 update

New page
Showing with 1 addition and 0 deletions.
  1. +1 −0 stories-rc.0-update.md
1 change: 1 addition & 0 deletions stories-rc.0-update.md

There is an additional root-level tsconfig.json that is used for IDE integration.

{
  "compileOnSave": false,
  "compilerOptions": {
    "outDir": "./dist/out-tsc",
    "target": "es5",
    "sourceMap": true,
    "declaration": false,
    "moduleResolution": "node",
    "emitDecoratorMetadata": true,
    "experimentalDecorators": true,
    "lib": [
      "es2016"
    ]
  }
}

You can delete e2e/tsconfig.json and src/tsconfig.json after adding these.

Original file line number Diff line number Diff line change
Expand Up @@ -267,6 +267,7 @@ There is an additional root-level `tsconfig.json` that is used for IDE integrati
"compileOnSave": false,
"compilerOptions": {
"outDir": "./dist/out-tsc",
"target": "es5",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
Expand Down