2025-03-29 01:33:25 +09:00

24 lines
561 B
JSON

{
"compilerOptions": {
"noImplicitAny": true,
"noEmitOnError": true,
"noImplicitThis": true,
"noUnusedLocals": true,
"noImplicitOverride": true,
"strictNullChecks": true,
"experimentalDecorators": true,
"downlevelIteration": true,
"emitDecoratorMetadata": true,
"module": "Node16",
"moduleResolution": "node16",
"resolveJsonModule": true,
"target": "ES2017",
"outDir": "lib",
"lib": ["ES2017", "dom"],
"jsx": "react",
"sourceMap": true,
"skipLibCheck": true
},
"include": ["src"],
}