vant/tsconfig.json
2021-02-22 20:10:21 +08:00

19 lines
423 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/**/*"],
"exclude": ["**/*.spec.ts", "**/*.spec.js", "node_modules"]
}