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",
|
2024-02-19 19:43:47 +05:30
|
|
|
"lib": ["dom", "esnext", "es2015", "es2016", "es2017"],
|
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": {
|
2024-02-19 19:43:47 +05:30
|
|
|
"react": ["./node_modules/@types/react"]
|
2024-02-07 21:10:06 +05:30
|
|
|
}
|
2020-03-11 17:06:35 +05:30
|
|
|
},
|
2024-02-19 19:43:47 +05:30
|
|
|
"include": ["./src/**/*", "type", "config.js", "config.template.js"],
|
|
|
|
|
"exclude": ["**/node_modules/*"]
|
2020-03-11 17:06:35 +05:30
|
|
|
}
|