Pandora/tsconfig.json

16 lines
280 B
JSON
Raw Normal View History

2024-12-03 21:50:31 -05:00
{
"include": [
"./src",
"index.ts"
],
"compilerOptions": {
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"jsx": "react-jsx",
"allowJs": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
}
}