-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtsconfig.json
More file actions
25 lines (25 loc) · 1.05 KB
/
tsconfig.json
File metadata and controls
25 lines (25 loc) · 1.05 KB
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
{
"compilerOptions": {
"declaration": true, /* Generates corresponding '.d.ts' file. */
"declarationMap": true, /* Generates a sourcemap for each corresponding '.d.ts' file. */
"outFile": "./build/js/maze.js", /* Concatenate and emit output to single file. */
"rootDir": "./src/", /* Specify the root directory of input files. */
"composite": true, /* Enable project compilation */
"strict": true, /* Enable all strict type-checking options. */
"noImplicitAny": true, /* Raise error on expressions and declarations with an implied 'any' type. */
"esModuleInterop": true, /* Enables emit interoperability between CommonJS and ES Modules via creation of
namespace objects for all imports. Implies 'allowSyntheticDefaultImports'. */
"target": "es6"
},
"files": [
"./src/ts/Utils.ts",
"./src/ts/lz-string.ts",
"./src/ts/Cell.ts",
"./src/ts/Character.ts",
"./src/ts/CharacterView.ts",
"./src/ts/Maze.ts",
"./src/ts/MazeView.ts",
"./src/ts/main.ts",
"./src/ts/MazeNavigator.ts"
]
}