mirror of
https://github.com/netbirdio/dashboard.git
synced 2026-01-26 01:21:04 +00:00
Refactoring UI using ant design This will allow us to move forward faster because of its popularity We also rewrote the code in TypeScript, we believe this is also a major step moving forward with the project as it brings more struct and clear/clean code. Co-authored-by: Raphael Oliveira <raphael.oliveira@dataontabs.com> Co-authored-by: braginini <bangvalo@gmail.com>
28 lines
591 B
JSON
28 lines
591 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",
|
|
"typeRoots" : ["node_modules/@types", "src/types"]
|
|
},
|
|
"include": [
|
|
"src"
|
|
]
|
|
}
|