12345678910111213141516171819202122232425262728293031323334353637 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "strict": true,
- "jsx": "preserve",
- "importHelpers": true,
- "moduleResolution": "node",
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "experimentalDecorators":true,
- "sourceMap": true,
- "skipLibCheck": true,
- "baseUrl": ".",
- "types": [
- "webpack-env",
- "@dcloudio/types"
- ],
- "paths": {
- "@/*": [
- "./src/*"
- ]
- },
- "lib": [
- "esnext",
- "dom",
- "dom.iterable",
- "scripthost"
- ]
- },
- "exclude": [
- "node_modules",
- "unpackage",
- "dist",
- "src/**/*.nvue"
- ]
- }
|