ente/web/tsconfig.base.json

31 lines
958 B
JSON
Raw Normal View History

2023-05-28 21:46:11 +00:00
{
"compilerOptions": {
"allowJs": true,
2023-05-28 22:26:27 +00:00
"allowSyntheticDefaultImports": true,
2023-05-28 21:46:11 +00:00
"baseUrl": ".",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
2023-05-28 22:26:27 +00:00
"isolatedModules": true,
"jsx": "react-jsx",
2023-05-28 21:46:11 +00:00
"lib": ["dom", "dom.iterable", "esnext"],
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
2023-05-28 22:26:27 +00:00
"noFallthroughCasesInSwitch": true,
2023-05-28 21:46:11 +00:00
"noImplicitAny": true,
"noUnusedLocals": true,
2023-05-28 22:26:27 +00:00
"noUnusedParameters": true,
2023-05-28 21:46:11 +00:00
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es2021",
"paths": {
2023-11-02 10:28:21 +00:00
"@ente/eslint-config/*": ["./packages/eslint-config/*"],
"@ente/shared/*": ["./packages/shared/*"],
2023-11-08 03:45:35 +00:00
"@ente/accounts/*": ["./packages/accounts/*"]
}
2023-05-28 21:46:11 +00:00
},
2023-05-28 23:01:59 +00:00
"exclude": ["**/node_modules", "**/.*/"]
2023-05-28 21:46:11 +00:00
}