forked from wangziqi/gongxue-base
20 lines
472 B
JSON
20 lines
472 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Bundler",
|
|
"jsx": "react-jsx",
|
|
"strict": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"skipLibCheck": true,
|
|
"resolveJsonModule": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"types": ["@tarojs/taro", "@tarojs/taro-h5", "node"]
|
|
},
|
|
"include": ["config/**/*.ts", "src/**/*.ts", "src/**/*.tsx"]
|
|
}
|