1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "allowJs": true,
- "allowSyntheticDefaultImports": true,
- "lib": ["dom", "es2017"],
- "noEmit": true,
- "module": "esnext",
- "moduleResolution": "node",
- "noUnusedLocals": true,
- "noUnusedParameters": true,
- "preserveConstEnums": true,
- "removeComments": false,
- "skipLibCheck": true,
- "sourceMap": true,
- "strict": true,
- "target": "esnext",
- "baseUrl": ".",
- "paths": {
- "*": ["*", "resources/js/*"]
- }
- },
- "include": ["resources/**/*"]
- }
|