Changeset 50f2fb4 for tsconfig.json
- Timestamp:
- 01/30/26 01:40:27 (8 months ago)
- Branches:
- master
- Children:
- ba52069
- Parents:
- 298f9b3
- File:
-
- 1 edited
-
tsconfig.json (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
tsconfig.json
r298f9b3 r50f2fb4 2 2 "compilerOptions": { 3 3 "target": "ES2017", 4 "lib": ["dom", "dom.iterable", "esnext"], 4 "lib": [ 5 "dom", 6 "dom.iterable", 7 "esnext" 8 ], 5 9 "allowJs": true, 6 10 "skipLibCheck": true, 7 11 "strict": true, 8 "noEmit": true,9 12 "esModuleInterop": true, 10 13 "module": "esnext", … … 12 15 "resolveJsonModule": true, 13 16 "isolatedModules": true, 14 "jsx": " preserve",17 "jsx": "react-jsx", 15 18 "incremental": true, 16 19 "plugins": [ … … 20 23 ], 21 24 "paths": { 22 "@/*": ["./src/*"] 23 } 25 "@/*": [ 26 "./src/*" 27 ] 28 }, 29 "noEmit": true 24 30 }, 25 "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"], 26 "exclude": ["node_modules"] 31 "include": [ 32 "next-env.d.ts", 33 "**/*.ts", 34 "**/*.tsx", 35 ".next/types/**/*.ts", 36 ".next/dev/types/**/*.ts" 37 ], 38 "exclude": [ 39 "node_modules" 40 ] 27 41 }
Note:
See TracChangeset
for help on using the changeset viewer.
