30 lines
516 B
JSON
30 lines
516 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"strict": true,
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"noEmit": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": [
|
|
"src/*"
|
|
]
|
|
},
|
|
"types": [
|
|
"@tarojs/taro",
|
|
"miniprogram-api-typings"
|
|
]
|
|
},
|
|
"include": [
|
|
"src",
|
|
"config",
|
|
"types"
|
|
]
|
|
}
|