Files
kube-now/tsconfig.json
Junior 15e6692647
Some checks failed
Test / test (macos-latest) (push) Waiting to run
Test / test (windows-latest) (push) Waiting to run
Test / test (ubuntu-latest) (push) Failing after 13m2s
commit inicial do projeto
2026-04-21 18:18:56 -03:00

22 lines
521 B
JSON

{
"compilerOptions": {
"incremental": true,
"target": "es2022",
"module": "node16",
"lib": ["dom", "es2022"],
"jsx": "react-jsx",
"strict": true,
"sourceMap": true,
"moduleResolution": "node16",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"resolveJsonModule": true,
"allowJs": true,
"outDir": ".erb/dll",
"baseUrl": ".",
"paths": {
"@/*": ["./src/*"]
}
},
"exclude": ["test", "release/build", "release/app/dist", ".erb/dll"]
}