-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathtsconfig.json
More file actions
28 lines (28 loc) · 942 Bytes
/
tsconfig.json
File metadata and controls
28 lines (28 loc) · 942 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
{
"compileOnSave": false,
"exclude": ["bazel-*"],
"compilerOptions": {
"baseUrl": ".",
"experimentalDecorators": true,
"sourceMap": true,
"declaration": true,
"declarationMap": true,
"strict": false,
"noImplicitAny": false,
"target": "es2021",
"lib": ["es2021", "dom", "dom.iterable"],
"moduleResolution": "node",
"paths": {
"@aos/*": ["./*", "external/aos/*"],
"@com_github_google_flatbuffers/*": [ "external/com_github_google_flatbuffers/reflection/reflection_ts_fbs/*", "../../external/com_github_google_flatbuffers/reflection/reflection_ts_fbs/*", "external/flatbuffers+/reflection/reflection_ts_fbs/*", "../../external/flatbuffers+/reflection/reflection_ts_fbs/*" ]
}
},
"bazelOptions": {
"workspaceName": "aos"
},
"angularCompilerOptions": {
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}