graph-drilldown/tsconfig.json

25 строки
537 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"incremental": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"target": "esnext",
"strict": true,
"declaration": true,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"allowSyntheticDefaultImports": true,
"noImplicitAny": false,
"noEmit": true,
"jsx": "react-jsx",
"skipLibCheck": true,
"lib": ["esnext", "dom"],
"paths": {
"~/*": ["./src/*"]
}
},
"exclude": ["**/node_modules/**", "**/__tests__/**"]
}