-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathtsconfig.json
More file actions
23 lines (22 loc) · 679 Bytes
/
tsconfig.json
File metadata and controls
23 lines (22 loc) · 679 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{
"$schema": "http://json.schemastore.org/tsconfig",
"compilerOptions": {
"module": "es2020",
"moduleResolution": "node",
"lib": [
"es2015"
],
"allowSyntheticDefaultImports": true,
"noEmitHelpers": true,
"declaration": true,
"target": "es2017",
"outDir": "./dist/",
"sourceMap": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
// TODO Remove once self-referencing supported https://github.com/microsoft/TypeScript/issues/38675
"paths": {
"@userfrosting/merge-package-dependencies": [ "./src/main" ]
}
}
}