12345678910111213141516171819202122232425262728293031323334353637383940 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "strict": true,
- "jsx": "preserve",
- "resolveJsonModule": true,
- "noImplicitAny": false,
- "importHelpers": true,
- "moduleResolution": "node",
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators": true,
- "sourceMap": false,
- "skipLibCheck": true,
- "baseUrl": ".",
- "types": [
- "@dcloudio/types",
- "miniprogram-api-typings",
- "mini-types",
- "wot-design-uni/global.d.ts"
- ],
- "paths": {
- "@/*": [
- "./src/*"
- ]
- },
- "lib": [
- "esnext",
- "dom",
- "dom.iterable",
- "scripthost"
- ]
- },
- "exclude": [
- "node_modules",
- "unpackage",
- "src/**/*.nvue"
- ],
- }
|