Skip to content

Commit

Permalink
Create tsconfig.json
Browse files Browse the repository at this point in the history
Update tsconfig.json

Update tsconfig.json
  • Loading branch information
aminya committed Mar 29, 2020
1 parent d81d5e7 commit a144b31
Showing 1 changed file with 40 additions and 0 deletions.
40 changes: 40 additions & 0 deletions lib_src/tsconfig.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
{
"compilerOptions": {
//// Linting Options - Uncomment options to get more features (usually more restrictive)
"strict": true,
"strictNullChecks": true,
// "forceConsistentCasingInFileNames": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
"noFallthroughCasesInSwitch": true,
"allowJs": true,
//// Compilation options
"declaration": true,
"emitDecoratorMetadata": true,
"esModuleInterop": true,
"experimentalDecorators": true,
"incremental": true,
"tsBuildInfoFile": "../tsconfig.tsbuildinfo",
// "inlineSourceMap": true,
// "preserveConstEnums": true,
// "sourceMap": true,
"preserveSymlinks": true,
// "removeComments": true,
// "jsx": "react",
// "jsxFactory": "etch.dom",
"lib": ["ES2018", "dom"],
"target": "ES2018",
"module": "commonjs",
"moduleResolution": "node",
// "noLib": false,
// "importHelpers": true, // if true you should add tslib to deps
// "skipLibCheck": false,

"outDir": "../lib/misc"
},
"files": ["misc/colors.ts"],
"compileOnSave": false
}

0 comments on commit a144b31

Please sign in to comment.