33 lines
687 B
JSON
33 lines
687 B
JSON
|
/*
|
||
|
* @LastEditors: John
|
||
|
* @Date: 2024-06-17 17:20:03
|
||
|
* @LastEditTime: 2024-06-24 18:48:07
|
||
|
* @Author: John
|
||
|
*/
|
||
|
{
|
||
|
"compilerOptions": {
|
||
|
"target": "ES2020",
|
||
|
"useDefineForClassFields": true,
|
||
|
"lib": ["ES2020", "DOM", "DOM.Iterable"],
|
||
|
"module": "ESNext",
|
||
|
"skipLibCheck": true,
|
||
|
|
||
|
/* Bundler mode */
|
||
|
"moduleResolution": "bundler",
|
||
|
"allowImportingTsExtensions": true,
|
||
|
"resolveJsonModule": true,
|
||
|
"isolatedModules": true,
|
||
|
"noEmit": true,
|
||
|
"jsx": "react-jsx",
|
||
|
|
||
|
/* Linting */
|
||
|
"allowSyntheticDefaultImports": true,
|
||
|
"strict": true,
|
||
|
|
||
|
"paths": {
|
||
|
"@/*": ["./src/*"]
|
||
|
}
|
||
|
},
|
||
|
"references": [{ "path": "./tsconfig.node.json" }]
|
||
|
}
|