forked from hanabi/hanabi.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtsconfig.json
More file actions
26 lines (24 loc) · 785 Bytes
/
tsconfig.json
File metadata and controls
26 lines (24 loc) · 785 Bytes
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
// The configuration file for TypeScript
{
// We extend the standard IsaacScript config
// https://github.com/IsaacScript/isaacscript-tsconfig/blob/main/tsconfig.node.json
"extends": "isaacscript-tsconfig/tsconfig.node.json",
// https://www.typescriptlang.org/docs/handbook/compiler-options.html
"compilerOptions": {
// "outDir" specifies the output directory
// By default, it will put the compiled ".js" next to the respective ".ts" file,
// which will clutter the "src" directory
"outDir": "dist",
},
// A list of the TypeScript files to compile
"include": [
".remarkrc.mjs",
"babel.config.js",
"docusaurus.config.js",
"image-generator/**/*.js",
"sidebars.js",
"src/**/*.js",
"src/**/*.ts",
"static/**/*.js",
],
}