-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
18 lines (17 loc) · 1.02 KB
/
tsconfig.json
File metadata and controls
18 lines (17 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
"extends": "@tsconfig/recommended/tsconfig.json",
// overrides recommended
"compilerOptions": {
"target": "es6", /* Set the JavaScript language version for emitted JavaScript*/
"skipLibCheck": false, /* Do NOT skip type checking of declaration files. */
"experimentalDecorators": true, /* Enables experimental support for ES7 decorators. */
"declaration": true, /* Generates corresponding '.d.ts' file. */
"sourceMap": true, /* Generates corresponding '.map' file. */
"noEmit": false, /* NOTE(AR) just making it explicit that we are using tsc (and not another tool) to emit compiled JavaScript */
"moduleResolution": "node10", /* NOTE(AR) just making it explicit that this is the tsc compilation strategy for module resolution that we are currently using */
},
"references": [
{ "path": "./packages/lwdita-ast" },
{ "path": "./packages/lwdita-xdita" },
]
}