/* * @Author: Kane * @Date: 2023-03-03 11:21:43 * @LastEditors: Kane * @FilePath: /ts-practice/tsconfig.json * @Description: * * Copyright (c) ${2022} by Kane, All Rights Reserved. */ { "compilerOptions": { "strict": true, "target": "ESNext", "module": "ESNext", "esModuleInterop": true, "moduleResolution": "nodenext", "lib": [ "ESNext", "DOM", ], "outDir": "./dist", "baseUrl": "./", "paths": { "@/*": [ "src/*" ], }, }, "include": [ "src/**/*.ts", "src/**/*.tsx", "*.d.ts", ], "exclude": [ "./node_modules", ], "compileOnSave": true, }