typescript-learning/code/ts-practice/tsconfig.json

38 lines
757 B
JSON
Raw Permalink Normal View History

2023-03-06 06:22:01 +00:00
/*
* @Author: Kane
* @Date: 2023-03-03 11:21:43
* @LastEditors: Kane
2023-03-06 10:41:28 +00:00
* @FilePath: /ts-practice/tsconfig.json
2023-03-06 06:22:01 +00:00
* @Description:
*
* Copyright (c) ${2022} by Kane, All Rights Reserved.
*/
{
"compilerOptions": {
"strict": true,
2023-03-06 10:41:28 +00:00
"target": "ESNext",
2023-03-07 07:55:53 +00:00
"module": "ESNext",
2023-03-06 06:22:01 +00:00
"esModuleInterop": true,
2023-03-10 16:27:45 +00:00
"moduleResolution": "node",
2023-03-06 06:22:01 +00:00
"lib": [
"ESNext",
2023-03-07 07:55:53 +00:00
"DOM",
2023-03-06 06:22:01 +00:00
],
2023-03-07 07:55:53 +00:00
"outDir": "./dist",
2023-03-06 06:22:01 +00:00
"baseUrl": "./",
"paths": {
"@/*": [
"src/*"
],
},
},
"include": [
"src/**/*.ts",
"src/**/*.tsx",
"*.d.ts",
],
"exclude": [
"./node_modules",
],
"compileOnSave": true,
}