2021-01-18 22:44:54 +02:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "es2018",
|
|
|
|
"sourceMap": true,
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strict": true,
|
|
|
|
"alwaysStrict": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"strictPropertyInitialization": false,
|
2021-09-11 19:06:51 +03:00
|
|
|
"lib": ["esnext", "dom"],
|
2021-01-18 22:44:54 +02:00
|
|
|
"baseUrl": ".",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"allowJs": true,
|
2021-09-05 18:33:42 +03:00
|
|
|
"jsx": "react",
|
|
|
|
"skipLibCheck": true
|
2021-01-18 22:44:54 +02:00
|
|
|
}
|
|
|
|
}
|