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