-
Notifications
You must be signed in to change notification settings - Fork 290
/
tsconfig.json
35 lines (35 loc) · 1.05 KB
/
tsconfig.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
33
34
35
{
"compileOnSave": false,
"compilerOptions": {
"baseUrl": ".",
"outDir": "./dist/out-tsc",
"noImplicitOverride": true,
"noPropertyAccessFromIndexSignature": true,
"noImplicitReturns": true,
"skipLibCheck": true,
"isolatedModules": true,
"types": ["node", "jasmine"],
"typeRoots": ["node_modules/@types"],
"esModuleInterop": true,
"sourceMap": true,
"declaration": false,
"experimentalDecorators": true,
"moduleResolution": "bundler",
"importHelpers": true,
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022", "dom"],
"paths": {
"@swimlane/ngx-graph": ["projects/swimlane/ngx-graph/src/public_api"],
"@swimlane/ngx-graph/*": ["projects/swimlane/ngx-graph/src/*"]
}
},
"include": ["./projects/**/*.ts", "**/*.d.ts", ".storybook/*.ts", "**/*.spec.ts"],
"exclude": ["**/*.e2e-spec.ts"],
"angularCompilerOptions": {
"enableI18nLegacyMessageIdFormat": false,
"strictInjectionParameters": true,
"strictInputAccessModifiers": true,
"strictTemplates": true
}
}