1234567891011121314151617181920212223 |
- {
- "compilerOptions": {
- "target": "ES2022",
- "module": "NodeNext",
- "lib": ["ES2022", "DOM"],
- "outDir": "./dist",
- "rootDir": "./src",
- "strict": true,
- "moduleResolution": "NodeNext",
- "baseUrl": "./src",
- "esModuleInterop": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "skipLibCheck": true,
- "allowSyntheticDefaultImports": true,
- "forceConsistentCasingInFileNames": true,
- "paths": {
- "@/*": ["./*"]
- }
- },
- "include": ["src/**/*"],
- "exclude": ["node_modules"]
- }
|