-
-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathtsconfig.base.json
More file actions
37 lines (37 loc) · 1.08 KB
/
Copy pathtsconfig.base.json
File metadata and controls
37 lines (37 loc) · 1.08 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
{
"compileOnSave": false,
"compilerOptions": {
"rootDir": ".",
"sourceMap": true,
"declaration": false,
"moduleResolution": "bundler",
"alwaysStrict": true,
"forceConsistentCasingInFileNames": true,
"downlevelIteration": true,
"experimentalDecorators": true,
"noImplicitOverride": true,
"noImplicitReturns": true,
"noImplicitAny": true,
"noImplicitThis": true,
"importHelpers": true,
"strictFunctionTypes": true,
"strictBindCallApply": true,
"strictNullChecks": true,
"target": "ES2022",
"module": "ES2022",
"lib": ["ES2022", "dom"],
"strict": true,
"skipLibCheck": true,
"skipDefaultLibCheck": true,
"baseUrl": ".",
"paths": {
"angular-i18next": ["libs/angular-i18next/src/index.ts"],
"angular-i18next/forms": ["libs/angular-i18next/forms/src/public_api.ts"],
"angular-i18next/ssr": ["libs/angular-i18next/ssr/src/public_api.ts"],
"angular-i18next/testing": [
"libs/angular-i18next/testing/src/public_api.ts"
],
}
},
"exclude": ["node_modules", "tmp"]
}