12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- {
- "compilerOptions": {
- "target": "esnext",
- "module": "esnext",
- "strict": true,
- "jsx": "preserve",
- "importHelpers": true,
- "moduleResolution": "node",
- "skipLibCheck": true,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "strictFunctionTypes": false,
- "allowJs": true,
- "sourceMap": true,
- "suppressImplicitAnyIndexErrors": true,
- "noUnusedLocals": false,
- "noUnusedParameters": false,
- "experimentalDecorators": true,
- "forceConsistentCasingInFileNames": true,
- "baseUrl": ".",
- "types": [
- "webpack-env",
- "node"
- ],
- "paths": {
- "@/*": [
- "src/*"
- ],
- "_c/*": [
- "src/components/*"
- ],
- "_@/*": [
- "src/pages/index/*"
- ],
- "_v/*": [
- "src/pages/index/views/*"
- ],
- "_p/*": [
- "src/pages/*"
- ]
- },
- "lib": [
- "esnext",
- "dom",
- "dom.iterable",
- "scripthost"
- ]
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.tsx",
- "src/**/*.vue",
- "tests/**/*.ts",
- "tests/**/*.tsx"
- ],
- "exclude": [
- "node_modules",
- "dist",
- "**/*.js"
- ]
- }
|