Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
健杭 徐
intern_project_frontend_backend
Compare Revisions
df96c1081ec2275ac6a5005cbb68527296634782...6f2fe0037df8a76c0d124261f362c3b8aabcd8da
Hide whitespace changes
Inline
Side-by-side
comment-system/static/src/vite-env.d.ts
0 → 100644
View file @
6f2fe003
/// <reference types="vite/client" />
comment-system/static/tsconfig.app.json
0 → 100644
View file @
6f2fe003
{
"compilerOptions"
:
{
"tsBuildInfoFile"
:
"./node_modules/.tmp/tsconfig.app.tsbuildinfo"
,
"target"
:
"ES2020"
,
"useDefineForClassFields"
:
true
,
"lib"
:
[
"ES2020"
,
"DOM"
,
"DOM.Iterable"
],
"module"
:
"ESNext"
,
"skipLibCheck"
:
true
,
/*
Bundler
mode
*/
"moduleResolution"
:
"bundler"
,
"allowImportingTsExtensions"
:
true
,
"verbatimModuleSyntax"
:
true
,
"moduleDetection"
:
"force"
,
"noEmit"
:
true
,
"jsx"
:
"react-jsx"
,
/*
Linting
*/
"strict"
:
true
,
"noUnusedLocals"
:
true
,
"noUnusedParameters"
:
true
,
"erasableSyntaxOnly"
:
true
,
"noFallthroughCasesInSwitch"
:
true
,
"noUncheckedSideEffectImports"
:
true
},
"include"
:
[
"src"
]
}
comment-system/static/tsconfig.json
0 → 100644
View file @
6f2fe003
{
"files"
:
[],
"references"
:
[
{
"path"
:
"./tsconfig.app.json"
},
{
"path"
:
"./tsconfig.node.json"
}
]
}
comment-system/static/tsconfig.node.json
0 → 100644
View file @
6f2fe003
{
"compilerOptions"
:
{
"tsBuildInfoFile"
:
"./node_modules/.tmp/tsconfig.node.tsbuildinfo"
,
"target"
:
"ES2022"
,
"lib"
:
[
"ES2023"
],
"module"
:
"ESNext"
,
"skipLibCheck"
:
true
,
/*
Bundler
mode
*/
"moduleResolution"
:
"bundler"
,
"allowImportingTsExtensions"
:
true
,
"verbatimModuleSyntax"
:
true
,
"moduleDetection"
:
"force"
,
"noEmit"
:
true
,
/*
Linting
*/
"strict"
:
true
,
"noUnusedLocals"
:
true
,
"noUnusedParameters"
:
true
,
"erasableSyntaxOnly"
:
true
,
"noFallthroughCasesInSwitch"
:
true
,
"noUncheckedSideEffectImports"
:
true
},
"include"
:
[
"vite.config.ts"
]
}
comment-system/static/vite.config.ts
0 → 100644
View file @
6f2fe003
import
{
defineConfig
}
from
'
vite
'
import
react
from
'
@vitejs/plugin-react-swc
'
// https://vite.dev/config/
export
default
defineConfig
({
plugins
:
[
react
()],
})
Prev
1
2
Next