Skip to content

Instantly share code, notes, and snippets.

@g4rcez
Created August 4, 2019 02:33
Show Gist options
  • Select an option

  • Save g4rcez/0848b503288f08e7a9592f04576c7f4a to your computer and use it in GitHub Desktop.

Select an option

Save g4rcez/0848b503288f08e7a9592f04576c7f4a to your computer and use it in GitHub Desktop.
{
"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