study-area-cn-homepage/tsconfig.json
cxykevin a8f49b285a 添加自动部署Actions (#1)
FTP_USER
FTP_PASSWD
FTP_IP

稍后完成key设置(WIP删除表示已完成)

不要乱改actions!

Reviewed-on: study-area-cn/study-area-cn-homepage#1
2024-06-23 10:17:42 +08:00

27 lines
672 B
JSON

{
"compilerOptions": {
"target": "ES2020",
"useDefineForClassFields": true,
"module": "ESNext",
"lib": ["ES2020", "DOM", "DOM.Iterable"],
"skipLibCheck": true,
"noImplicitAny": false,
/* Bundler mode */
"moduleResolution": "bundler",
"allowImportingTsExtensions": true,
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "preserve",
/* Linting */
"strict": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noFallthroughCasesInSwitch": true
},
"include": ["src/**/*.ts", "src/**/*.tsx", "src/**/*.vue"],
"references": [{ "path": "./tsconfig.node.json" }]
}