26 lines
607 B
JSON
26 lines
607 B
JSON
|
|
{
|
||
|
|
"compilerOptions": {
|
||
|
|
"target": "ESNext",
|
||
|
|
"module": "ESNext",
|
||
|
|
"lib": ["ESNext", "DOM"],
|
||
|
|
"moduleResolution": "Node",
|
||
|
|
"strict": true,
|
||
|
|
"sourceMap": true,
|
||
|
|
"resolveJsonModule": true,
|
||
|
|
"esModuleInterop": true,
|
||
|
|
"types": ["vite/client"],
|
||
|
|
"noEmit": true,
|
||
|
|
"noUnusedLocals": true,
|
||
|
|
"noUnusedParameters": true,
|
||
|
|
"noImplicitReturns": true,
|
||
|
|
"experimentalDecorators": true,
|
||
|
|
"emitDecoratorMetadata": true,
|
||
|
|
"jsx": "react-jsx",
|
||
|
|
"baseUrl": ".",
|
||
|
|
"paths": {
|
||
|
|
"@/*": ["./src/*"]
|
||
|
|
}
|
||
|
|
},
|
||
|
|
"include": ["./src", "node_modules/@types/p5/index.d.ts"]
|
||
|
|
}
|