f7
f7 is a spreadsheet formula execution library
git clone https://git.vogt.world/f7.git
Log | Files | README.md | LICENSE.md
← All files
name: tsconfig.json
-rw-r--r--
562
 1{
 2  "compilerOptions": {
 3    "baseUrl": "./",
 4    "outDir": "./target/lib",
 5    "module": "ESNext",
 6    "noImplicitAny": true,
 7    "lib": [
 8      "ESNext",
 9      "dom"
10    ],
11    "target": "ESNext",
12    "isolatedModules": false,
13    "experimentalDecorators": true,
14    "downlevelIteration": true,
15    "esModuleInterop": true,
16    "allowSyntheticDefaultImports": true,
17    "allowJs": true,
18    "checkJs": false,
19    "moduleResolution": "node",
20  },
21  "files": [
22    "./src/test/js/Index.ts"
23  ],
24  "include": [
25    "./src/**/*.ts",
26    "./src/test/**/*.ts"
27  ]
28}