25 lines
576 B
JSON
25 lines
576 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2022",
|
|
"useDefineForClassFields": true,
|
|
"lib": ["ESNext", "DOM", "DOM.Iterable"],
|
|
"module": "ES2022",
|
|
"skipLibCheck": true,
|
|
"esModuleInterop": true,
|
|
|
|
/* Bundler mode */
|
|
"moduleResolution": "Bundler",
|
|
"isolatedModules": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
|
|
/* Linting */
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noFallthroughCasesInSwitch": true
|
|
},
|
|
"include": ["src", "global.d.ts", "src/images.d.ts"],
|
|
}
|