30 lines
555 B
JSON
30 lines
555 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "es2025",
|
|
"lib": [
|
|
"ES2025",
|
|
"DOM",
|
|
"DOM.Iterable"
|
|
],
|
|
"module": "ESNext",
|
|
"types": [
|
|
"node",
|
|
"vite/client"
|
|
],
|
|
"strict": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
/* Bundler mode */
|
|
"moduleResolution": "bundler",
|
|
"allowImportingTsExtensions": true,
|
|
"verbatimModuleSyntax": true,
|
|
"moduleDetection": "force",
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
},
|
|
"include": [
|
|
"src",
|
|
"scripts",
|
|
"vite.config.ts",
|
|
]
|
|
} |