vant/tsconfig.json
2021-03-16 09:59:13 +08:00

19 lines
399 B
JSON

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