mirror of
https://github.com/vitejs/vite.git
synced 2024-11-21 14:48:41 +00:00
22 lines
489 B
JSON
22 lines
489 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ESNext",
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
"moduleResolution": "Bundler",
|
|
"strict": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"esModuleInterop": true,
|
|
"noEmit": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
|
|
"useDefineForClassFields": true,
|
|
"verbatimModuleSyntax": true,
|
|
"experimentalDecorators": true
|
|
},
|
|
"include": ["./src"]
|
|
}
|