You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"target": "esnext",
|
|
|
|
"module": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"strict": true,
|
|
|
|
"noLib": false,
|
|
|
|
"forceConsistentCasingInFileNames": true,
|
|
|
|
"allowSyntheticDefaultImports": true,
|
|
|
|
"strictFunctionTypes": false,
|
|
|
|
"jsx": "preserve",
|
|
|
|
"baseUrl": ".",
|
|
|
|
"allowJs": true,
|
|
|
|
"sourceMap": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"noUnusedLocals": true,
|
|
|
|
"noUnusedParameters": true,
|
|
|
|
"experimentalDecorators": true,
|
|
|
|
"lib": [
|
|
|
|
"dom",
|
|
|
|
"esnext"
|
|
|
|
],
|
|
|
|
"noImplicitAny": false,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"types": [
|
|
|
|
"vite/client"
|
|
|
|
],
|
|
|
|
"removeComments": true,
|
|
|
|
"paths": {
|
|
|
|
"/@/*": [
|
|
|
|
"src/*"
|
|
|
|
],
|
|
|
|
"/#/*": [
|
|
|
|
"types/*"
|
|
|
|
]
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"include": [],
|
|
|
|
"exclude": [
|
|
|
|
"node_modules",
|
|
|
|
"tests/server/**/*.ts",
|
|
|
|
"dist",
|
|
|
|
"**/*.js"
|
|
|
|
]
|
|
|
|
}
|