|
1 | 1 | { |
2 | 2 | "compilerOptions": { |
3 | | - "lib": ["ESNext"], |
4 | 3 | "target": "ESNext", |
5 | | - "module": "Preserve", |
6 | | - "moduleDetection": "force", |
7 | | - "moduleResolution": "bundler", |
8 | | - "allowImportingTsExtensions": true, |
9 | | - "verbatimModuleSyntax": true, |
10 | | - "noEmit": true, |
| 4 | + |
| 5 | + "emitDecoratorMetadata": true, |
| 6 | + "experimentalDecorators": true, |
| 7 | + "baseUrl": ".", |
| 8 | + "module": "ESNext", |
| 9 | + "moduleResolution": "Bundler", |
| 10 | + "paths": { |
| 11 | + "~/*": ["./src/*"], |
| 12 | + "@!/*": ["./tests/*"], |
| 13 | + "pagiko": ["./src/index.ts"] |
| 14 | + }, |
| 15 | + |
11 | 16 | "strict": true, |
12 | | - "skipLibCheck": true, |
13 | | - "noFallthroughCasesInSwitch": true, |
14 | | - "noUncheckedIndexedAccess": true, |
15 | | - "noImplicitOverride": true, |
16 | | - "noUnusedLocals": false, |
17 | | - "noUnusedParameters": false, |
18 | | - "noPropertyAccessFromIndexSignature": false |
| 17 | + "noEmit": true, |
| 18 | + |
| 19 | + "allowSyntheticDefaultImports": true, |
| 20 | + "esModuleInterop": true, |
| 21 | + "isolatedModules": true, |
| 22 | + "skipLibCheck": true |
19 | 23 | }, |
20 | | - "include": ["src", "examples"] |
| 24 | + |
| 25 | + "include": ["src", "examples", "tests", "eslint.config.ts", "tsup.config.ts"], |
| 26 | + "exclude": ["node_modules", "dist"] |
21 | 27 | } |
0 commit comments