Skip to content

Commit

Permalink
Move tsconfig.json to root
Browse files Browse the repository at this point in the history
Renamed as tsconfig-base.json so we couldn't run tsc in root.
  • Loading branch information
untsamphan committed Jun 14, 2018
1 parent cc9862e commit 00003e8
Showing 1 changed file with 7 additions and 11 deletions.
18 changes: 7 additions & 11 deletions webapp/tsconfig.json → tsconfig-base.json
@@ -1,15 +1,11 @@
{
"compilerOptions": {
"baseUrl": ".",
"outDir": "build/dist",
"module": "esnext",
"target": "es5",
"lib": ["es6", "dom"],
"sourceMap": true,
"allowJs": true,
"jsx": "react",
"moduleResolution": "node",
"rootDir": "src",
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
Expand All @@ -19,12 +15,12 @@
"noUnusedLocals": true
},
"exclude": [
"node_modules",
"build",
"scripts",
"acceptance-tests",
"webpack",
"jest",
"src/setupTests.ts"
"**/node_modules/*",
"**/build/*",
"**/scripts/*",
"**/acceptance-tests/*",
"**/webpack/*",
"**/jest/*",
"**/setupTests.ts"
]
}

0 comments on commit 00003e8

Please sign in to comment.