Zorn/tsconfig.json

16 lines
280 B
JSON
Raw Normal View History

2024-08-16 15:20:41 -05:00
{
"include": [
"./src",
"index.ts"
],
"compilerOptions": {
2024-12-02 19:13:22 -05:00
"lib": ["ESNext"],
"target": "ESNext",
"module": "ESNext",
"jsx": "react-jsx",
"allowJs": true,
"strict": true,
"skipLibCheck": true,
"noFallthroughCasesInSwitch": true,
2024-08-16 15:20:41 -05:00
}
}