mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-04 13:58:54 +00:00
25 lines
630 B
JSON
25 lines
630 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ES2020",
|
||
|
|
"module": "ESNext",
|
||
|
|
"moduleResolution": "node",
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"strict": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"allowJs": true,
|
||
|
|
"checkJs": false,
|
||
|
|
"noEmit": true,
|
||
|
|
"baseUrl": "./src",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./*"]
|
||
|
|
},
|
||
|
|
"skipLibCheck": true,
|
||
|
|
"forceConsistentCasingInFileNames": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"isolatedModules": true,
|
||
|
|
},
|
||
|
|
"include": ["src/**/*.ts", "src/**/*.tsx"],
|
||
|
|
"exclude": ["node_modules", "build"],
|
||
|
|
"no-unused-vars": "off", // disable base rule — @typescript-eslint/no-unused-vars handles it
|
||
|
|
}
|