2023-05-29 03:44:08 +03:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
2023-07-23 03:27:41 +03:00
|
|
|
"lib": ["esnext", "DOM", "DOM.Iterable"],
|
2023-07-16 09:02:12 +03:00
|
|
|
"experimentalDecorators": true,
|
2023-05-29 03:44:08 +03:00
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
2024-01-28 09:19:37 +03:00
|
|
|
"moduleResolution": "node",
|
2023-05-29 03:44:08 +03:00
|
|
|
"strict": true,
|
|
|
|
"incremental": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"jsx": "react-jsx",
|
|
|
|
"jsxImportSource": "preact"
|
|
|
|
},
|
2023-07-23 03:27:41 +03:00
|
|
|
"include": ["**/*.ts", "**/*.tsx", "./package.json"],
|
|
|
|
"exclude": ["build/**/*.d.ts"]
|
2023-05-29 03:44:08 +03:00
|
|
|
}
|