wg-dashboard/tsconfig.json
Matheus Sampaio Queiroga 5263aa31e1
init routers
Signed-off-by: Matheus Sampaio Queiroga <srherobrine20@gmail.com>
2023-12-19 00:42:51 -03:00

30 lines
615 B
JSON

{
"compilerOptions": {
"esModuleInterop": true,
"module": "NodeNext",
"moduleResolution": "NodeNext",
"target": "ESNext",
"forceConsistentCasingInFileNames": true,
"declaration": true,
"strict": false,
"noUnusedLocals": true,
"isolatedModules": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"skipLibCheck": true,
"allowJs": true,
"composite": true,
"lib": [
"ESNext"
]
},
"exclude": [
"**/node_modules/**",
"**/*.test.*"
],
"ts-node": {
"files": true,
"esm": true,
"transpileOnly": true
}
}