-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathtsconfig.json
29 lines (24 loc) · 1.06 KB
/
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
{
/*
You can add any other Typescript settings below, either by adding them directly,
or extending a base configuration file with this one.
(If you aren't sure what I mean about extending, I would recommend just
adding the settings to this file.)
*/
"compilerOptions": {
// Other compiler settings go here
"strict": true,
// -------------------------------------------------------------------------
// if you're adding your own, add them ABOVE the dotted line ^^^
// that way, these will override any we need that you accidentally add.
"noEmit": false, // REQUIRED: `"noEmit": false
"module": "esnext", // REQUIRED: "module": "esnext"
// This is where the compiler should actually write your compiled files to
// If you change this, your server needs to change its root.
"outDir": "./public/src",
// this is where you want the compiler to start if you want your compiled
// directory structure to match your source (you probably do)
"rootDir": "./src",
"target": "es5",
}
}