36 lines
965 B
JSON
36 lines
965 B
JSON
{
|
|
"compilerOptions": {
|
|
"noEmit": true,
|
|
"target": "es6",
|
|
"module": "esnext",
|
|
"noImplicitAny": false,
|
|
"preserveConstEnums": true,
|
|
"jsx": "react-jsx",
|
|
"lib": ["dom", "dom.iterable", "es5", "es6", "es7", "es2017", "es2020"],
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"allowJs": true,
|
|
"skipLibCheck": true,
|
|
"declaration": false,
|
|
"emitDecoratorMetadata": true,
|
|
"experimentalDecorators": true,
|
|
"forceConsistentCasingInFileNames": true,
|
|
"moduleResolution": "node",
|
|
"noEmitOnError": true,
|
|
"noFallthroughCasesInSwitch": true,
|
|
"noImplicitReturns": true,
|
|
"noImplicitThis": true,
|
|
"noUnusedLocals": false,
|
|
"strict": true,
|
|
"strictFunctionTypes": false,
|
|
"pretty": true,
|
|
"removeComments": true,
|
|
"sourceMap": true,
|
|
"resolveJsonModule": true,
|
|
"types": ["vite/client"],
|
|
"baseUrl": "src"
|
|
},
|
|
"exclude": ["node_modules"],
|
|
"include": ["src"]
|
|
}
|