forked from ngbracket/ngx-layout
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
58 lines (58 loc) · 1.78 KB
/
tsconfig.json
File metadata and controls
58 lines (58 loc) · 1.78 KB
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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
{
"compileOnSave": false,
"compilerOptions": {
"paths": {
"@ngbracket/ngx-layout": ["projects/libs/flex-layout/public-api.ts"],
"@ngbracket/ngx-layout/_private-utils": [
"projects/libs/flex-layout/_private-utils/index.ts"
],
"@ngbracket/ngx-layout/_private-utils/testing": [
"projects/libs/flex-layout/_private-utils/testing/index.ts"
],
"@ngbracket/ngx-layout/core": [
"projects/libs/flex-layout/core/public-api.ts"
],
"@ngbracket/ngx-layout/extended": [
"projects/libs/flex-layout/extended/public-api.ts"
],
"@ngbracket/ngx-layout/flex": [
"projects/libs/flex-layout/flex/public-api.ts"
],
"@ngbracket/ngx-layout/grid": [
"projects/libs/flex-layout/grid/public-api.ts"
],
"@ngbracket/ngx-layout/server": [
"projects/libs/flex-layout/server/public-api.ts"
]
},
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"esModuleInterop": true,
"forceConsistentCasingInFileNames": true,
"strict": true,
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"noFallthroughCasesInSwitch": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"moduleResolution": "node",
"importHelpers": true,
"target": "ES2022",
"module": "es2020",
"lib": ["es2020", "dom"],
"useDefineForClassFields": false,
"rootDir": ".",
"emitDecoratorMetadata": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true
},
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
},
"exclude": ["node_modules", "tmp"]
}