-
Notifications
You must be signed in to change notification settings - Fork 16
/
tsconfig.json
34 lines (34 loc) · 928 Bytes
/
tsconfig.json
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
{
"compilerOptions": {
"target": "esnext",
"module": "commonjs",
"declaration": true,
"declarationMap": true,
"outDir": "./cjs",
"removeComments": false,
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": false,
"skipLibCheck": true,
"sourceMap": true,
"emitDeclarationOnly": false
},
"include": [
"index.ts",
"test/utils/get-covariance.ts",
"test/api/basic.ts",
"test/issues/26.ts",
"test/issues/34.ts",
"test/issues/59.ts",
"test/unit/core/constant-speed-pendulum.ts",
"test/unit/core/linear-2d.ts",
"test/unit/core/linear-4d.ts",
"test/unit/core/trivial.ts",
"test/unit/kalman-filter/asymptotic.ts",
"test/unit/kalman-filter/filter.ts",
"test/unit/kalman-filter/logger.ts",
"test/unit/kalman-filter/polymorphism.ts",
"test/unit/kalman-filter/register.ts"
],
"exclude": ["dist"]
}