| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "lib": [
- "DOM",
- "DOM.Iterable",
- "ESNext"
- ],
- "allowJs": false,
- "esModuleInterop": true,
- "allowSyntheticDefaultImports": true,
- "skipLibCheck": true,
- "noUnusedParameters": false,
- "forceConsistentCasingInFileNames": true,
- "module": "ESNext",
- "moduleResolution": "Node",
- "resolveJsonModule": true,
- "noEmit": true,
- "jsx": "preserve",
- "sourceMap": true,
- "experimentalDecorators": true,
- "emitDecoratorMetadata": true,
- "baseUrl": ".",
- "noImplicitThis": true,
- "types": [
- "vite/client",
- "jest"
- ],
- "paths": {
- "@/*": [
- "src/*"
- ]
- }
- },
- "include": [
- "src/**/*.ts",
- "src/**/*.d.ts",
- "src/**/*.tsx",
- "src/**/*.vue"
- ],
- "ts-node": {
- "compilerOptions": {
- "module": "commonjs"
- }
- }
- }
|