[READ-ONLY] Mirror of https://github.com/andrioid/generic-table-ts. Prototype. Playing around with TypeScript generics and a stackable Table.
589 B
22 lines
1{
2 "compilerOptions": {
3 "target": "ESNext",
4 "useDefineForClassFields": true,
5 "lib": ["DOM", "DOM.Iterable", "ESNext"],
6 "allowJs": false,
7 "skipLibCheck": true,
8 "esModuleInterop": false,
9 "allowSyntheticDefaultImports": true,
10 "strict": true,
11 "forceConsistentCasingInFileNames": true,
12 "module": "ESNext",
13 "moduleResolution": "Node",
14 "strictNullChecks": true,
15 "resolveJsonModule": true,
16 "isolatedModules": true,
17 "noEmit": true,
18 "jsx": "react-jsx"
19 },
20 "include": ["src"],
21 "references": [{ "path": "./tsconfig.node.json" }]
22}