1
1
mirror of https://github.com/twentyhq/twenty.git synced 2024-12-20 01:51:54 +03:00
twenty/front/tsconfig.json

26 lines
606 B
JSON

{
"compilerOptions": {
"target": "es5",
"lib": ["dom", "dom.iterable", "esnext"],
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react-jsx",
"baseUrl": ".",
"paths": {
"@/*": ["src/modules/*"],
"~/*": ["src/*"],
}
},
"include": ["src/**/*"]
}