You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"outDir": "./dist",
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "es5",
|
|
|
|
"lib": ["es5", "dom", "es2015"],
|
|
|
|
"sourceMap": true,
|
|
|
|
"allowJs": false,
|
|
|
|
"jsx": "react",
|
|
|
|
"declaration": true,
|
|
|
|
"declarationDir": "./dist/types",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"noImplicitAny": true,
|
|
|
|
"strictNullChecks": true,
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"esModuleInterop": true
|
|
|
|
},
|
|
|
|
"include": ["src"],
|
|
|
|
"exclude": ["node_modules", "dist"]
|
|
|
|
}
|