|
1 | 1 | { |
2 | | - "compilerOptions": { |
3 | | - "lib": ["dom", "dom.iterable", "esnext"], |
4 | | - "allowJs": true, |
5 | | - "skipLibCheck": true, |
6 | | - "strict": true, |
7 | | - "noEmit": true, |
8 | | - "esModuleInterop": true, |
9 | | - "module": "esnext", |
10 | | - "moduleResolution": "bundler", |
11 | | - "resolveJsonModule": true, |
12 | | - "allowImportingTsExtensions": true, |
13 | | - "isolatedModules": true, |
14 | | - "jsx": "preserve", |
15 | | - "incremental": true, |
16 | | - "plugins": [ |
17 | | - { |
18 | | - "name": "next" |
19 | | - } |
20 | | - ], |
21 | | - "paths": { |
22 | | - "~/*": ["./src/*"], |
23 | | - "#site/content": ["./.velite"], |
24 | | - "@pixelshades/styles/*": ["../../packages/styles/src/*"], |
25 | | - "@pixelshades/auto-form": ["../../packages/auto-form/src"], |
26 | | - "@pixelshades/ui/*": ["../../packages/ui/src/*"] |
27 | | - } |
28 | | - }, |
29 | | - "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], |
30 | | - "exclude": ["node_modules"] |
| 2 | + "compilerOptions": { |
| 3 | + "lib": [ |
| 4 | + "dom", |
| 5 | + "dom.iterable", |
| 6 | + "esnext" |
| 7 | + ], |
| 8 | + "allowJs": true, |
| 9 | + "skipLibCheck": true, |
| 10 | + "strict": true, |
| 11 | + "noEmit": true, |
| 12 | + "esModuleInterop": true, |
| 13 | + "module": "esnext", |
| 14 | + "moduleResolution": "bundler", |
| 15 | + "resolveJsonModule": true, |
| 16 | + "allowImportingTsExtensions": true, |
| 17 | + "isolatedModules": true, |
| 18 | + "jsx": "preserve", |
| 19 | + "incremental": true, |
| 20 | + "plugins": [ |
| 21 | + { |
| 22 | + "name": "next" |
| 23 | + } |
| 24 | + ], |
| 25 | + "paths": { |
| 26 | + "~/*": [ |
| 27 | + "./src/*" |
| 28 | + ], |
| 29 | + "#site/content": [ |
| 30 | + "./.velite" |
| 31 | + ], |
| 32 | + "@pixelshades/styles/*": [ |
| 33 | + "../../packages/styles/src/*" |
| 34 | + ], |
| 35 | + "@pixelshades/auto-form": [ |
| 36 | + "../../packages/auto-form/src" |
| 37 | + ], |
| 38 | + "@pixelshades/ui/*": [ |
| 39 | + "../../packages/ui/src/*" |
| 40 | + ] |
| 41 | + }, |
| 42 | + "target": "ES2017" |
| 43 | + }, |
| 44 | + "include": [ |
| 45 | + "next-env.d.ts", |
| 46 | + "**/*.ts", |
| 47 | + "**/*.tsx", |
| 48 | + ".next/types/**/*.ts" |
| 49 | + ], |
| 50 | + "exclude": [ |
| 51 | + "node_modules" |
| 52 | + ] |
31 | 53 | } |
0 commit comments