vant/tsconfig.json
2021-02-23 19:43:29 +08:00

18 lines
360 B
JSON

{
"compilerOptions": {
"baseUrl": ".",
"jsx": "preserve",
"target": "esnext",
"module": "esnext",
"strict": true,
"allowJs": true,
"noImplicitThis": true,
"esModuleInterop": true,
"moduleResolution": "node",
"paths": {
"@demo/*": ["docs/site/*"]
}
},
"include": ["types/**/*", "docs/**/*", "src/**/*"]
}