forked from OntoUML/ontouml-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtsconfig.json
28 lines (28 loc) · 812 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
{
"compilerOptions": {
"target": "es6",
"lib": ["es2020"],
"module": "es2020",
"moduleResolution": "node",
"allowSyntheticDefaultImports": true,
"allowJs": true,
"importHelpers": true,
"alwaysStrict": true,
"sourceMap": true,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"noImplicitReturns": true,
"resolveJsonModule": true,
"typeRoots": ["./@types", "./node_modules/@types"],
"baseUrl": ".",
"paths": {
"@test-models/*": ["__tests__/test_models/*"],
"@constants/*": ["src/constants/*"],
"@error/*": ["src/error/*"],
"@libs/*": ["src/libs/*"],
"@utils/*": ["src/utils/*"],
"@resources/*": ["resources/*"]
}
},
"include": ["src/**/*", "@types/**/*", "__tests__/**/*"]
}