generated from Tinkoff/angular-open-source-starter
-
Notifications
You must be signed in to change notification settings - Fork 32
/
tsconfig.json
24 lines (24 loc) · 948 Bytes
/
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
{
"extends": "@taiga-ui/tsconfig",
"exclude": ["projects/demo-integrations", "projects/**/*.spec.ts", "projects/**/*.spec.tsx"],
"angularCompilerOptions": {
"strictTemplates": true
},
"compilerOptions": {
"baseUrl": "./",
"outDir": "./dist/out-tsc",
"typeRoots": ["node_modules/@types", "node_modules/@taiga-ui/tsconfig/@types"],
"sourceMap": true,
"jsx": "react-jsx",
"checkJs": false,
"paths": {
"@demo/constants": ["projects/demo/src/app/constants/index.ts"],
"@maskito/angular": ["projects/angular/src/index.ts"],
"@maskito/core": ["projects/core/src/index.ts"],
"@maskito/kit": ["projects/kit/src/index.ts"],
"@maskito/phone": ["projects/phone/src/index.ts"],
"@maskito/react": ["projects/react/src/index.ts"],
"@maskito/vue": ["projects/vue/src/index.ts"]
}
}
}