2020-03-11 17:06:35 +05:30
|
|
|
{
|
|
|
|
|
"compilerOptions": {
|
2020-05-22 03:47:26 +05:30
|
|
|
"sourceMap": true,
|
|
|
|
|
"noImplicitAny": false,
|
|
|
|
|
"module": "esnext",
|
|
|
|
|
"target": "es6",
|
|
|
|
|
"outDir": "./dist/",
|
|
|
|
|
"moduleResolution": "node",
|
2020-03-11 17:06:35 +05:30
|
|
|
"lib": [
|
|
|
|
|
"dom",
|
2020-05-22 03:47:26 +05:30
|
|
|
"esnext",
|
|
|
|
|
"es2015",
|
|
|
|
|
"es2016",
|
|
|
|
|
"es2017",
|
2020-03-11 17:06:35 +05:30
|
|
|
],
|
2020-05-22 03:47:26 +05:30
|
|
|
"removeComments": true,
|
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
|
"jsx": "react",
|
2020-03-11 17:06:35 +05:30
|
|
|
"allowJs": true,
|
2020-05-22 03:47:26 +05:30
|
|
|
"resolveJsonModule": true,
|
|
|
|
|
"baseUrl": "./",
|
2020-03-11 17:06:35 +05:30
|
|
|
"skipLibCheck": true,
|
|
|
|
|
"esModuleInterop": true,
|
|
|
|
|
"strict": true,
|
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
|
"isolatedModules": true,
|
2024-02-07 21:10:06 +05:30
|
|
|
"noEmit": true,
|
|
|
|
|
"paths": {
|
|
|
|
|
"react": [ "./node_modules/@types/react" ]
|
|
|
|
|
}
|
2020-03-11 17:06:35 +05:30
|
|
|
},
|
|
|
|
|
"include": [
|
2024-02-08 01:01:30 +05:30
|
|
|
"./src/**/*",
|
|
|
|
|
"type"
|
2024-02-09 13:12:53 +05:30
|
|
|
],
|
|
|
|
|
"exclude": ["**/node_modules/*"],
|
2020-03-11 17:06:35 +05:30
|
|
|
}
|