forked from ag-grid/ag-grid
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.base.json
32 lines (32 loc) · 1.05 KB
/
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
30
31
32
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "node",
"emitDecoratorMetadata": true,
"experimentalDecorators": true,
"importHelpers": true,
"esModuleInterop": true,
"target": "ES2020",
"module": "commonjs",
"lib": ["ES2022", "DOM"],
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": "./",
"strictNullChecks": true,
"downlevelIteration": true,
"noImplicitAny": true,
"noUnusedLocals": false,
"noImplicitOverride": true,
"paths": {
"@ag-grid-community/client-side-row-model": ["community-modules/client-side-row-model/src/main.ts"],
"@ag-grid-community/core": ["community-modules/core/src/main.ts"],
"@ag-grid-enterprise/core": ["enterprise-modules/core/src/main.ts"],
"@ag-grid-enterprise/side-bar": ["enterprise-modules/side-bar/src/main.ts"],
"@ag-grid-enterprise/status-bar": ["enterprise-modules/status-bar/src/main.ts"]
}
},
"exclude": ["node_modules", "tmp"]
}