typescript cannot write file because it would overwrite input file

Solutions on MaxInterview for typescript cannot write file because it would overwrite input file by the best coders in the world

showing results for - "typescript cannot write file because it would overwrite input file"
Amy
21 Jan 2018
1{
2  "compilerOptions": {
3     "target": "es5",
4     "module": "commonjs",
5     "allowJs": true,
6     "jsx": "react",
7     "strict": true,
8     "noImplicitAny": true,
9     "typeRoots": [
10        "src/@typings",
11        "src/actions/@types",
12        "src/components/@types",
13        "src/reducers/@types",
14        "node_modules/@types"
15     ],
16     "esModuleInterop": true,
17     "skipLibCheck": true,
18     "forceConsistentCasingInFileNames": true,
19     "resolveJsonModule": true,
20     "outDir": "./build",
21     
22  },
23  "include": ["./src/**/*"],
24  "exclude": ["node_modules", "build", "public"],
25}