/ tsconfig.json
tsconfig.json
1 { 2 "compilerOptions": { 3 "target": "ESNext", 4 "emitDecoratorMetadata": true, 5 "experimentalDecorators": true, 6 "baseUrl": ".", 7 "module": "ESNext", 8 "moduleResolution": "Bundler", 9 "strict": true, 10 "noEmit": true, 11 "allowSyntheticDefaultImports": true, 12 "esModuleInterop": true, 13 "isolatedModules": true, 14 "skipLibCheck": true 15 }, 16 "include": ["src", "examples", "eslint.config.ts", "bunup.config.ts"], 17 "exclude": ["node_modules", "dist"] 18 }