-
Notifications
You must be signed in to change notification settings - Fork 4
/
tsconfig.json
17 lines (16 loc) · 1.04 KB
/
tsconfig.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
"extends": "@tsconfig/recommended/tsconfig.json",
// overrides recommended
"compilerOptions": {
"target": "es6", /* Target ECMAScript version 6. */
"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 */
"rootDir": "src",
"outDir": "dist", /* Redirect output structure to the `dist/` directory. */
"resolveJsonModule": true
},
}