hyperdx/packages/app/tsconfig.json

45 lines
No EOL
817 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"lib": [
"dom",
"dom.iterable",
"esnext"
],
"allowJs": true,
"sourceMap": true,
"skipLibCheck": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noEmit": true,
"incremental": true,
"esModuleInterop": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"useUnknownInCatchVariables": false,
"jsx": "preserve",
"types": [
"@types/intercom-web",
"jest"
],
"baseUrl": ".",
"paths": {
"@/*": [
"src/*"
],
"@styles/*": [
"styles/*"
]
}
},
"include": [
"next-env.d.ts",
"**/*.ts",
"**/*.tsx"
],
"exclude": [
"node_modules"
]
}