Zalvena/packages/web/tsconfig.json

16 lines
284 B
JSON
Raw Normal View History

2023-04-02 12:43:28 +01:00
{
"compilerOptions": {
2025-02-18 20:19:12 -05:00
"target": "es2022",
2023-04-02 12:43:28 +01:00
"strict": true,
2023-09-01 13:35:18 +01:00
"moduleResolution": "node",
2023-04-02 12:43:28 +01:00
"esModuleInterop": true,
2023-09-01 13:35:18 +01:00
"jsx": "react-jsx",
2023-04-02 12:43:28 +01:00
"baseUrl": ".",
"paths": {
"types": ["@types"]
},
"declaration": true,
2023-09-01 13:35:18 +01:00
"declarationDir": "./dist"
}
2023-04-02 12:43:28 +01:00
}