wimi/etc/tsconfig.json

15 lines
351 B
JSON
Raw Normal View History

2023-09-27 02:57:29 +02:00
{
"compilerOptions": {
"strict": true,
"module": "commonjs",
"target": "ES2020",
"moduleResolution": "node",
"esModuleInterop": true,
2024-08-31 06:23:41 +02:00
"jsx": "react-jsx",
2023-09-27 02:57:29 +02:00
"lib": [ "ES2020", "DOM" ],
"baseUrl": "src/",
2023-09-28 21:42:07 +02:00
"paths": { "~/*": ["js/*"] },
2023-09-28 23:10:15 +02:00
"types": ["node", "jest", "@testing-library/jest-dom", "@types/chrome"]
2023-09-27 02:57:29 +02:00
}
}