Zalvena/packages/web/tsconfig.json

16 lines
281 B
JSON
Raw Normal View History

2023-04-02 12:43:28 +01:00
{
"compilerOptions": {
2023-09-01 13:35:18 +01:00
"target": "es6",
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
}