1234567891011121314151617181920212223242526272829303132333435 |
- {
- "compilerOptions": {
- // Type Checking
- "strict": true,
- "exactOptionalPropertyTypes": true,
- "noImplicitAny": false,
- // Language and Environment
- "target": "ESNext",
- // Modules
- "moduleResolution": "node",
- // Completeness
- "skipLibCheck": true,
- // Interop Constraints
- "esModuleInterop": true,
- "forceConsistentCasingInFileNames": true,
- // Emit
- "sourceMap": true,
- // "strictFunctionTypes": false,
- "isolatedModules": false,
- "baseUrl": ".",
- "paths": {
- "@/*": ["components/*"],
- },
- "lib": ["esnext", "dom"]
- },
- "include": [
- "**/*.js",
- "**/*.d.ts",
- "**/*.ts",
- "**/*.vue",
- "typings"
- ],
- "exclude": ["node_modules"]
- }
|