From a144b31de7493089a7a84c3bdb7648860789b57a Mon Sep 17 00:00:00 2001 From: aminya Date: Sun, 15 Mar 2020 03:02:36 -0500 Subject: [PATCH] Create tsconfig.json Update tsconfig.json Update tsconfig.json --- lib_src/tsconfig.json | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 lib_src/tsconfig.json diff --git a/lib_src/tsconfig.json b/lib_src/tsconfig.json new file mode 100644 index 00000000..75928ae1 --- /dev/null +++ b/lib_src/tsconfig.json @@ -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 +}