forked from rowsncolumns/fast-formula-parser
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
51 lines (50 loc) · 1.15 KB
/
tsconfig.json
File metadata and controls
51 lines (50 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
{
"compilerOptions": {
"allowJs": true,
"checkJs": false,
"declaration": true,
"emitDeclarationOnly": false,
"declarationMap": true,
"outDir": "build",
"noEmitOnError": false,
"skipLibCheck": true,
"strict": true,
"noImplicitAny": false,
"strictNullChecks": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictPropertyInitialization": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": false,
"noImplicitThis": true,
"noUnusedLocals": false,
"noUnusedParameters": false,
"module": "esnext",
"target": "es2020",
"moduleResolution": "bundler",
"esModuleInterop": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"resolveJsonModule": true,
"isolatedModules": true,
"lib": ["es2020", "dom", "es2022"]
},
"include": [
"index.ts",
"formulas/**/*.ts",
"grammar/**/*.ts",
"ssf/**/*.ts",
"index.js",
"formulas/**/*.js",
"grammar/**/*.js",
"ssf/**/*.js"
],
"exclude": [
"test",
"docs",
"build",
"examples",
"coverage",
"node_modules"
]
}