23 lines
519 B
JSON
23 lines
519 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2017",
|
|
"module": "ESNext",
|
|
"moduleResolution": "Node",
|
|
"allowJs": false,
|
|
"strict": true,
|
|
"noEmit": true,
|
|
"jsx": "react-jsx",
|
|
"esModuleInterop": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"resolveJsonModule": true,
|
|
"skipLibCheck": true,
|
|
"baseUrl": ".",
|
|
"paths": {
|
|
"@/*": ["src/*"]
|
|
},
|
|
"types": ["@tarojs/taro", "node"]
|
|
},
|
|
"include": ["src", "config", "vitest.config.ts"],
|
|
"exclude": ["node_modules", "dist"]
|
|
}
|