-
-
Notifications
You must be signed in to change notification settings - Fork 242
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
28 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,32 @@ | ||
{ | ||
"compilerOptions": { | ||
"outDir": "public/assets", | ||
"sourceMap": true, | ||
"noImplicitAny": true, | ||
"allowSyntheticDefaultImports": true, | ||
"esModuleInterop": true, | ||
"strict": true, | ||
"target": "esnext", | ||
"module": "commonjs", | ||
"target": "es6", | ||
"jsx": "react" | ||
"lib": ["dom", "dom.iterable", "esnext"], | ||
"jsx": "react", | ||
// Specify module resolution strategy: "node" (Node.js) or "classic" (TypeScript pre-1.6) | ||
"moduleResolution": "node", | ||
// Enable all strict type-checking options. Recommended by TS | ||
"strict": true, | ||
// Enables emit interoperability between CommonJS and ES Modules via creation of namespace objects for all imports. | ||
// Implies "allowSyntheticDefaultImports". Recommended by TS | ||
"esModuleInterop": true, | ||
// Skip type checking of declaration files. Recommended by TS | ||
"skipLibCheck": true, | ||
// Disallow inconsistently-cased references to the same file. Recommended by TS | ||
"forceConsistentCasingInFileNames": true, | ||
// Do not emit outputs | ||
"noEmit": true, | ||
// Raise error on expressions and declarations with an implied "any" type | ||
"noImplicitAny": true, | ||
// Report errors on unused locals | ||
"noUnusedLocals": true, | ||
// Report errors on unused parameters | ||
"noUnusedParameters": true, | ||
// Report error when not all code paths in function return a value | ||
"noImplicitReturns": true, | ||
// Report errors for fallthrough cases in switch statement | ||
"noFallthroughCasesInSwitch": true | ||
} | ||
} |