This repository has been archived on 2024-02-11. You can view files and clone it, but cannot push or open issues or pull requests.
sitio/tsconfig.json

17 lines
332 B
JSON
Raw Permalink Normal View History

2022-12-20 17:07:24 +00:00
{
2023-04-30 19:08:25 +00:00
"exclude": ["build.js/", "build/"],
2022-12-20 17:07:24 +00:00
"compilerOptions": {
"target": "es2022",
"module": "es2022",
"moduleResolution": "node",
"esModuleInterop": true,
2023-04-16 18:58:25 +00:00
"strict": true,
"allowJs": true,
2023-06-12 21:14:14 +00:00
"checkJs": true,
2023-11-12 09:37:38 +00:00
"noEmit": true,
"skipLibCheck": true,
"forceConsistentCasingInFileNames": true
2022-12-20 17:07:24 +00:00
}
}