-
Notifications
You must be signed in to change notification settings - Fork 15
/
tsconfig.base.json
29 lines (29 loc) · 997 Bytes
/
tsconfig.base.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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"esModuleInterop": true,
"target": "es2020",
"module": "esnext",
"lib": ["es2023", "dom"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"strictNullChecks": true,
"paths": {
"ag-charts-community": ["packages/ag-charts-community/src/main.ts"],
"ag-charts-community-examples": ["packages/ag-charts-community-examples/src/index.ts"],
"ag-charts-community-test": ["packages/ag-charts-community/src/main-test.ts"],
"ag-charts-enterprise": ["packages/ag-charts-enterprise/src/main.ts"],
"ag-charts-locale": ["packages/ag-charts-locale/src/main.ts"],
"ag-charts-types": ["packages/ag-charts-types/src/main.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}