luoyang-screen/tsconfig.json

22 lines
556 B
JSON
Raw Permalink Normal View History

2024-07-29 14:10:07 +08:00
{
"compilerOptions": {
"target": "es5",
2024-08-19 14:44:16 +08:00
"lib": ["dom", "dom.iterable", "esnext"],
2024-07-29 14:10:07 +08:00
"allowJs": true,
"skipLibCheck": true,
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"strict": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
2024-08-19 14:44:16 +08:00
"jsx": "react-jsx",
"downlevelIteration": true
2024-07-29 14:10:07 +08:00
},
2024-08-19 14:44:16 +08:00
"include": ["src"]
2024-07-29 14:10:07 +08:00
}