Created
August 4, 2019 02:33
-
-
Save g4rcez/0848b503288f08e7a9592f04576c7f4a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
| { | |
| "compilerOptions": { | |
| "target": "es5", | |
| "lib": [ | |
| "dom", | |
| "es2018.asynciterable", | |
| "dom.iterable", | |
| "es2015.generator", | |
| "esnext.symbol", | |
| "esnext.array", | |
| "esnext.bigint", | |
| "esnext.symbol", | |
| "esnext" | |
| ], | |
| "allowJs": false, | |
| "alwaysStrict": true, | |
| "keyofStringsOnly": true, | |
| "downlevelIteration": true, | |
| "strictNullChecks": true, | |
| "skipLibCheck": true, | |
| "noImplicitThis": true, | |
| "noImplicitAny": true, | |
| "noImplicitReturns": true, | |
| "noUnusedParameters": false, | |
| "esModuleInterop": true, | |
| "allowSyntheticDefaultImports": true, | |
| "strict": true, | |
| "forceConsistentCasingInFileNames": true, | |
| "module": "esnext", | |
| "moduleResolution": "node", | |
| "resolveJsonModule": true, | |
| "isolatedModules": true, | |
| "noEmit": true, | |
| "rootDirs": [ | |
| "src", | |
| "docs" | |
| ], | |
| "jsx": "preserve", | |
| "removeComments": true, | |
| "inlineSourceMap": true, | |
| "charset": "utf-8", | |
| "checkJs": false, | |
| "pretty": false, | |
| "inlineSources": true, | |
| "preserveConstEnums": true, | |
| "typeRoots": [ | |
| "./src/@types" | |
| ], | |
| "baseUrl": "./src", | |
| "paths": { | |
| "@/*": [ | |
| "*" | |
| ], | |
| "*": [ | |
| "@types/*" | |
| ] | |
| } | |
| }, | |
| "exclude": [ | |
| "node_modules/" | |
| ], | |
| "typeAcquisition": { | |
| "enable": true | |
| }, | |
| "include": [ | |
| "src/**/*", | |
| "themes/campos.ts", | |
| "docs" | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment