Skip to content

Commit

Permalink
add tsconfig.json
Browse files Browse the repository at this point in the history
  • Loading branch information
nandomoreirame committed Dec 8, 2019
1 parent 84e3673 commit 4cf9eb1
Showing 1 changed file with 54 additions and 0 deletions.
54 changes: 54 additions & 0 deletions tsconfig.json
@@ -0,0 +1,54 @@
{
"compilerOptions": {
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"isolatedModules": true,
"jsx": "preserve",
"lib": ["dom", "esnext"],
"module": "commonjs",
"noEmit": true,
"noUnusedLocals": true,
"strict": true,
"target": "esnext"
// "incremental": true,
// "allowJs": true,
// "checkJs": true,
// "declaration": true,
// "declarationMap": true,
// "sourceMap": true,
// "outFile": "./",
// "outDir": "./",
// "rootDir": "./",
// "composite": true,
// "tsBuildInfoFile": "./",
// "removeComments": true,
// "importHelpers": true,
// "downlevelIteration": true,
// "noImplicitAny": true,
// "strictNullChecks": true,
// "strictFunctionTypes": true,
// "strictBindCallApply": true,
// "strictPropertyInitialization": true,
// "noImplicitThis": true,
// "alwaysStrict": true,
// "noUnusedParameters": true,
// "noImplicitReturns": true,
// "noFallthroughCasesInSwitch": true,
// "moduleResolution": "node",
// "baseUrl": "./",
// "paths": {},
// "rootDirs": [],
// "typeRoots": [],
// "types": [],
// "allowSyntheticDefaultImports": true,
// "preserveSymlinks": true,
// "allowUmdGlobalAccess": true,
// "sourceRoot": "",
// "mapRoot": "",
// "inlineSourceMap": true,
// "inlineSources": true,
// "experimentalDecorators": true,
// "emitDecoratorMetadata": true,
},
"exclude": ["node_modules", "public", ".cache"]
}

0 comments on commit 4cf9eb1

Please sign in to comment.