22 lines
559 B
JSON
22 lines
559 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"useDefineForClassFields": true,
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"jsx": "preserve",
|
|
"jsxImportSource": "solid-js",
|
|
"types": ["vite/client", "node"]
|
|
},
|
|
"include": ["./src", "public/gif.worker.js", "public/gif.worker.js"]
|
|
}
|