Repository URL to install this package:
Version:
2.0.8 ▾
|
exotic
/
tsconfig.json
|
---|
{
"compilerOptions": {
"outDir": "dist",
"module": "commonjs",
"target": "es6",
"lib": [
"es5",
"dom",
"es2015",
"es2016",
"es2017",
"esnext",
"scripthost",
"webworker"
],
"esModuleInterop": false,
"allowSyntheticDefaultImports": false,
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"allowJs": false,
"declaration": true,
"moduleResolution": "node",
"noEmitOnError": false,
"experimentalDecorators": true,
"emitDecoratorMetadata": false,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strictNullChecks": false,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false
},
"include": [
"src/*",
"src/**/*.ts",
"src/**/*.tsx"
],
"exclude": [
"public",
"node_modules",
"build",
"scripts",
"dist",
"__jest/*",
"__jest",
"__tests__",
"**/__tests__",
"**/__todo",
"**/__unused"
]
}