|
1 | | -{ |
2 | | - "compilerOptions": { |
3 | | - "target": "ESNext", |
4 | | - "lib": ["ESNext", "DOM"], |
5 | | - "moduleDetection": "force", |
6 | | - "useDefineForClassFields": false, |
7 | | - "experimentalDecorators": true, |
8 | | - "baseUrl": ".", |
9 | | - "module": "ESNext", |
10 | | - "moduleResolution": "bundler", |
11 | | - "paths": { |
12 | | - "~/*": ["src/*"], |
13 | | - "~~/*": ["*"], |
14 | | - "@tsky/lexicons": ["../lexicons/index.ts"], |
15 | | - }, |
16 | | - "resolveJsonModule": true, |
17 | | - "allowJs": true, |
18 | | - "strict": true, |
19 | | - "noFallthroughCasesInSwitch": true, |
20 | | - "noImplicitOverride": true, |
21 | | - "noImplicitReturns": true, |
22 | | - "noUnusedLocals": true, |
23 | | - "noImplicitAny": true, |
24 | | - "noUnusedParameters": true, |
25 | | - "declaration": false, |
26 | | - "noEmit": true, |
27 | | - "outDir": "dist/", |
28 | | - "sourceMap": true, |
29 | | - "esModuleInterop": true, |
30 | | - "forceConsistentCasingInFileNames": true, |
31 | | - "isolatedModules": true, |
32 | | - "verbatimModuleSyntax": true, |
33 | | - "skipLibCheck": true |
34 | | - }, |
35 | | - "include": ["./src/**/*", "./globalSetup.ts", "./test-utils.ts"], |
36 | | - "typedocOptions": { |
37 | | - "out": "./docs", |
38 | | - "theme": "default", |
39 | | - "exclude": "**/+(__tests__|__mocks__)/*", |
40 | | - "excludePrivate": true, |
41 | | - "excludeProtected": true, |
42 | | - }, |
43 | | -} |
| 1 | +{ |
| 2 | + "compilerOptions": { |
| 3 | + "target": "ESNext", |
| 4 | + "lib": ["ESNext", "DOM"], |
| 5 | + "moduleDetection": "force", |
| 6 | + "useDefineForClassFields": false, |
| 7 | + "experimentalDecorators": true, |
| 8 | + "baseUrl": ".", |
| 9 | + "module": "ESNext", |
| 10 | + "moduleResolution": "bundler", |
| 11 | + "paths": { |
| 12 | + "~/*": ["src/*"], |
| 13 | + "~~/*": ["*"], |
| 14 | + "@tsky/lexicons": ["../lexicons/index.ts"], |
| 15 | + }, |
| 16 | + "resolveJsonModule": true, |
| 17 | + "allowJs": true, |
| 18 | + "strict": true, |
| 19 | + "noFallthroughCasesInSwitch": true, |
| 20 | + "noImplicitOverride": true, |
| 21 | + "noImplicitReturns": true, |
| 22 | + "noUnusedLocals": true, |
| 23 | + "noImplicitAny": true, |
| 24 | + "noUnusedParameters": true, |
| 25 | + "declaration": false, |
| 26 | + "noEmit": true, |
| 27 | + "outDir": "dist/", |
| 28 | + "sourceMap": true, |
| 29 | + "esModuleInterop": true, |
| 30 | + "forceConsistentCasingInFileNames": true, |
| 31 | + "isolatedModules": true, |
| 32 | + "verbatimModuleSyntax": true, |
| 33 | + "skipLibCheck": true |
| 34 | + }, |
| 35 | + "include": ["./src/**/*", "./globalSetup.ts", "./test-utils.ts"], |
| 36 | + "typedocOptions": { |
| 37 | + "out": "./docs", |
| 38 | + "theme": "default", |
| 39 | + "exclude": ["**/+(__tests__|__mocks__)/*", "**/*.test.ts", "**/*.spec.ts"], |
| 40 | + "excludePrivate": true, |
| 41 | + "excludeProtected": true, |
| 42 | + }, |
| 43 | +} |
0 commit comments