2023-03-03 03:35:34 +00:00
|
|
|
/*
|
|
|
|
* @Author: Kane
|
|
|
|
* @Date: 2023-03-03 11:21:43
|
|
|
|
* @LastEditors: Kane
|
|
|
|
* @FilePath: /code_test/tsconfig.json
|
|
|
|
* @Description:
|
|
|
|
*
|
|
|
|
* Copyright (c) ${2022} by Kane, All Rights Reserved.
|
|
|
|
*/
|
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"strict": true,
|
|
|
|
"target": "ES2015",
|
|
|
|
"module": "CommonJS",
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"lib": [
|
|
|
|
"ESNext",
|
|
|
|
],
|
2023-03-03 08:08:27 +00:00
|
|
|
"baseUrl": "./",
|
|
|
|
"paths": {
|
|
|
|
"@/*": [
|
|
|
|
"src/*"
|
|
|
|
],
|
|
|
|
},
|
2023-03-03 03:35:34 +00:00
|
|
|
},
|
|
|
|
"include": [
|
|
|
|
"src/**/*.ts",
|
|
|
|
"src/**/*.tsx",
|
|
|
|
"*.d.ts",
|
|
|
|
],
|
|
|
|
"exclude": [
|
|
|
|
"./node_modules",
|
|
|
|
],
|
|
|
|
"compileOnSave": true,
|
|
|
|
}
|