mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 05:42:44 +08:00
20 lines
443 B
JSON
20 lines
443 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "preserve",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"noImplicitThis": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node",
|
|
"paths": {
|
|
"@demo/*": ["docs/site/*"]
|
|
}
|
|
},
|
|
"include": ["types/**/*", "docs/**/*", "src/**/*"],
|
|
"exclude": ["**/*.spec.ts", "**/*.spec.js", "node_modules"]
|
|
}
|