ente/tsconfig.base.json

24 lines
664 B
JSON
Raw Normal View History

2023-05-28 21:46:11 +00:00
{
"compilerOptions": {
"allowJs": true,
"baseUrl": ".",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"incremental": true,
"jsx": "preserve",
"lib": ["dom", "dom.iterable", "esnext"],
"maxNodeModuleJsDepth": 10,
"module": "esnext",
"moduleResolution": "node",
"noEmit": true,
"noImplicitAny": true,
"noUnusedLocals": true,
"resolveJsonModule": true,
"skipLibCheck": true,
"strict": true,
"target": "es2021",
"types": ["webpack-env", "jest"]
},
"exclude": ["**/node_modules", "**/.*/"]
}