12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "strict": false,
- "allowJs": false,
- "importHelpers": true,
- "noEmitHelpers": true,
- "moduleResolution": "node",
- "experimentalDecorators": true,
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": false,
- "sourceMap": true,
- "noUnusedLocals": false,
- "noUnusedParameters": false,
- "baseUrl": ".",
- "types": [
- "webpack-env"
- ],
- "typeRoots": [
- "./src/*",
- ],
- "paths": {
- "@/*": [
- "src/*"
- ],
- "$components/*": [
- "src/components/*"
- ],
- "$mixins/*": [
- "src/mixins/*"
- ],
- "$config/*": [
- "src/config/*"
- ],
- "$assets/*": [
- "src/assets/*"
- ],
- "$views/*": [
- "src/views/*"
- ],
- "$utils/*": [
- "src/utils/*"
- ],
- "$const/*": [
- "src/const/*"
- ],
- "$popup/*": [
- "src/popup/*"
- ]
- },
- "lib": [
- "esnext",
- "dom",
- "dom.iterable",
- "scripthost"
- ]
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "tests/**/*.ts",
- "tests/**/*.tsx"
- ],
- "exclude": [
- "node_modules"
- ]
- }
|