This repository has been archived on 2025-08-02. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
flexpatrol.ru-form-handler/tsconfig.json
2023-05-09 22:08:39 +03:00

20 lines
416 B
JSON

{
"compilerOptions": {
"lib": [
"ESNext"
],
"module": "esnext",
"target": "esnext",
"moduleResolution": "bundler",
"strict": true,
"downlevelIteration": true,
"skipLibCheck": true,
"jsx": "react-jsx",
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"allowJs": true,
"types": [
"bun-types" // add Bun global
]
}
}