123456789101112131415161718192021222324 |
- {
- "compilerOptions": {
- "target": "ESNext",
- "module": "ESNext",
- "lib": ["ESNext", "dom"],
- "moduleResolution": "Bundler",
- "outDir": "./dist",
- "rootDir": ".",
- "strict": false,
- "esModuleInterop": true,
- "skipLibCheck": true,
- "forceConsistentCasingInFileNames": false,
- "allowImportingTsExtensions": true,
- "declaration": true,
- "emitDeclarationOnly": true,
- "resolveJsonModule": true,
- "noImplicitAny": false,
- "allowJs": true,
- "checkJs": true,
- "noEmitOnError": false,
- "moduleDetection": "force",
- "allowArbitraryExtensions": true
- }
- }
|