-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.app.json
More file actions
33 lines (33 loc) · 862 Bytes
/
tsconfig.app.json
File metadata and controls
33 lines (33 loc) · 862 Bytes
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
/* To learn more about Typescript configuration file: https://www.typescriptlang.org/docs/handbook/tsconfig-json.html. */
/* To learn more about Angular compiler options: https://angular.dev/reference/configs/angular-compiler-options. */
{
"extends": "./tsconfig.json",
"compilerOptions": {
"outDir": "./out-tsc/app",
"types": [],
"paths": {
"@ai-table/grid": [
"./packages/grid/src/index"
],
"@ai-table/state": [
"./packages/state/src/public-api"
],
"@ai-table/utils": [
"./packages/utils/src/index"
]
},
"moduleResolution": "bundler",
"importHelpers": true,
"module": "es2020",
"lib": [
"es2022",
"dom"
]
},
"files": [
"src/main.ts"
],
"include": [
"src/**/*.d.ts"
]
}