2018-10-05 17:34:19 +05:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
|
|
|
|
"module": "commonjs",
|
|
|
|
|
"pretty": true,
|
|
|
|
|
"target": "ES2016",
|
2018-12-08 21:17:09 +05:30
|
|
|
"resolveJsonModule": true,
|
2018-10-29 14:29:11 +05:30
|
|
|
"jsx": "react",
|
2019-01-08 12:20:50 +05:30
|
|
|
"outDir": "lib",
|
2019-10-30 20:58:25 +05:30
|
|
|
"rootDir": ".",
|
2021-11-16 10:50:17 +01:00
|
|
|
"lib": ["es2016", "dom"],
|
2018-10-05 17:34:19 +05:30
|
|
|
"moduleResolution": "node",
|
|
|
|
|
"strict": true,
|
|
|
|
|
"removeComments": false,
|
|
|
|
|
"preserveConstEnums": true,
|
|
|
|
|
"sourceMap": true,
|
|
|
|
|
"declaration": true,
|
2018-10-29 14:29:11 +05:30
|
|
|
"noImplicitAny": false,
|
2018-10-05 17:34:19 +05:30
|
|
|
"noImplicitReturns": true,
|
|
|
|
|
"suppressImplicitAnyIndexErrors": true,
|
|
|
|
|
"strictNullChecks": true,
|
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
|
"noImplicitThis": true,
|
2022-06-16 12:32:30 +05:30
|
|
|
"skipLibCheck": true,
|
2018-10-05 17:34:19 +05:30
|
|
|
"noUnusedParameters": true,
|
2021-11-16 10:50:17 +01:00
|
|
|
"typeRoots": ["node_modules/@types"]
|
2018-10-05 17:34:19 +05:30
|
|
|
},
|
2021-11-16 10:50:17 +01:00
|
|
|
"include": ["src/**/*"],
|
|
|
|
|
"exclude": ["node_modules", "lib", "tests", "spec"]
|
2019-03-19 16:22:39 +05:30
|
|
|
}
|