24 lines
567 B
JSON
24 lines
567 B
JSON
{
|
|
"exclude": ["node_modules"],
|
|
"include": ["src", "types"],
|
|
"compilerOptions": {
|
|
"module": "ESNext",
|
|
"lib": ["ESNext", "DOM"],
|
|
"types": ["vite/client"],
|
|
"importHelpers": true,
|
|
"declaration": true,
|
|
"sourceMap": true,
|
|
"rootDir": "./src",
|
|
"strict": true,
|
|
"noUnusedLocals": true,
|
|
"noUnusedParameters": true,
|
|
"noImplicitReturns": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"moduleResolution": "node",
|
|
"jsx": "react-jsx",
|
|
"jsxImportSource": "react",
|
|
"esModuleInterop": true,
|
|
"target": "ES2017"
|
|
}
|
|
}
|