mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
24 lines
404 B
JSON
24 lines
404 B
JSON
{
|
|
"compilerOptions": {
|
|
"baseUrl": ".",
|
|
"jsx": "preserve",
|
|
"target": "esnext",
|
|
"module": "esnext",
|
|
"strict": true,
|
|
"allowJs": true,
|
|
"noEmit": true,
|
|
"noImplicitThis": true,
|
|
"esModuleInterop": true,
|
|
"moduleResolution": "node"
|
|
},
|
|
"include": [
|
|
"types/**/*",
|
|
"src/**/*",
|
|
],
|
|
"exclude": [
|
|
"**/*.spec.ts",
|
|
"**/*.spec.js",
|
|
"node_modules"
|
|
]
|
|
}
|