generated from codex-team/typescript-lib-template
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathtsconfig.json
36 lines (33 loc) · 922 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
25
26
27
28
29
30
31
32
33
34
35
36
{
"compilerOptions" : {
"sourceMap": false,
"target": "es2017",
"declaration": true,
"baseUrl": "./",
"rootDir": "src",
"outDir": "dist",
"moduleResolution": "node", // This resolution strategy attempts to mimic the Node.js module resolution mechanism at runtime
"lib": ["dom", "es2017", "es2018", "es2019"],
// allows to import .json files for i18n
"resolveJsonModule": true,
// allows to omit export default in .json files
"allowSyntheticDefaultImports": true,
"experimentalDecorators": true,
"strictNullChecks": true,
"paths": {
"@utils/*": ["packages/*/src"]
},
"composite": true
},
"include": ["src/**/*"],
"exclude": [
"node_modules",
"packages/**/dist*",
],
"references": [
{ "path": "packages/dom" },
{ "path": "packages/caret" },
{ "path": "packages/helpers" },
{ "path": "packages/keyboard" }
]
}