mirror of
https://github.com/misode/misode.github.io.git
synced 2026-04-22 23:10:40 +00:00
26 lines
564 B
JSON
26 lines
564 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2021",
|
|
"module": "node16",
|
|
"lib": ["dom","esnext"],
|
|
"moduleResolution": "node16",
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"skipLibCheck": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"jsx": "preserve",
|
|
"jsxFactory": "h",
|
|
"jsxFragmentFactory": "Fragment"
|
|
},
|
|
"include": [
|
|
"./src",
|
|
]
|
|
}
|