wimi/tsconfig.json
2024-08-31 10:39:18 -03:00

14 lines
351 B
JSON

{
"compilerOptions": {
"strict": true,
"module": "commonjs",
"target": "ES2020",
"moduleResolution": "node",
"esModuleInterop": true,
"jsx": "react-jsx",
"lib": [ "ES2020", "DOM" ],
"baseUrl": "src/",
"paths": { "~/*": ["js/*"] },
"types": ["node", "jest", "@testing-library/jest-dom", "@types/chrome"]
}
}