返回 reveal.js
tsconfig.json
根目录 / react / demo / tsconfig.json
1 {
2 "compilerOptions": {
3 "target": "ES2020",
4 "module": "ESNext",
5 "moduleResolution": "bundler",
6 "jsx": "react-jsx",
7 "strict": true,
8 "esModuleInterop": true,
9 "skipLibCheck": true,
10 "baseUrl": ".",
11 "paths": {
12 "@revealjs/react": ["../src/index.ts"]
13 }
14 },
15 "include": ["src"]
16 }
17
17 lines JSON