Permalink
Cannot retrieve contributors at this time
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
altair/tsconfig.json
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
21 lines (21 sloc)
1.31 KB
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
Show hidden characters
// NOTE: No trailing commas in this file, otherwise nx will throw an error | |
// https://github.com/nrwl/nx/issues/10393 | |
{ | |
"compileOnSave": true, | |
"compilerOptions": { | |
"declaration": true, | |
"declarationMap": true, | |
// "esModuleInterop": true, | |
"forceConsistentCasingInFileNames": true, | |
/* Type Checking */ | |
"strict": true /* Enable all strict type-checking options. */, | |
// "noUnusedLocals": true, /* Enable error reporting when local variables aren't read. */ | |
// "noUnusedParameters": true, /* Raise an error when a function parameter isn't read. */ | |
// "noImplicitReturns": true, /* Enable error reporting for codepaths that do not explicitly return in a function. */ | |
// "noFallthroughCasesInSwitch": true, /* Enable error reporting for fallthrough cases in switch statements. */ | |
"noUncheckedIndexedAccess": true, /* Add 'undefined' to a type when accessed using an index. */ | |
// "noImplicitOverride": true, /* Ensure overriding members in derived classes are marked with an override modifier. */ | |
// "noPropertyAccessFromIndexSignature": true, /* Enforces using indexed accessors for keys declared using an indexed type. */ | |
"skipLibCheck": true | |
} | |
} |