Repository URL to install this package:
|
Version:
5.0.1 ▾
|
@skava/router
/
tsconfig.json
|
|---|
{
"compilerOptions": {
"outDir": "dist",
"module": "commonjs",
"target": "es6",
"lib": [
"dom",
"es2015",
"es2016",
"es2017",
"es2018",
"esnext"
],
"jsx": "react",
"skipDefaultLibCheck": true,
"skipLibCheck": true,
"sourceMap": true,
"allowJs": false,
"declaration": true,
"moduleResolution": "node",
"noEmitOnError": false,
"esModuleInterop": true,
"experimentalDecorators": true,
"emitDecoratorMetadata": false,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"noImplicitReturns": true,
"noImplicitThis": true,
"noImplicitAny": false,
"strictNullChecks": false,
"suppressImplicitAnyIndexErrors": true,
"noUnusedLocals": false
},
"typeRoots": [
"node_modules/@types"
],
"include": [
"src/*",
],
"exclude": [
"public",
"node_modules",
"build",
"scripts",
"dist",
"**/__todo",
"**/__unused",
"__tests__"
]
}