-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtsconfig.json
49 lines (49 loc) · 1.62 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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"compilerOptions": {
"target": "ESNext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
"lib": ["ESNext", "DOM"],
"strict": true,
"sourceMap": true,
"isolatedModules": true,
"esModuleInterop": true,
"noUnusedLocals": true,
"noUnusedParameters": true,
"noImplicitReturns": true,
"noImplicitOverride": true,
"skipLibCheck": true,
"outDir": "./dist",
// "outFile": "./dist/index.d.ts",
"rootDir": "./src",
"baseUrl": "./src",
"declaration": true,
"declarationDir": "./dist/",
"emitDeclarationOnly": true,
"allowJs": false,
"paths": {
"inks2d/collision": ["collision/", "collision/*"],
"inks2d/effects/particles": ["effects/particles", "effects/particles/*"],
"inks2d/effects/sfx": ["effects/sfx", "effects/sfx/*"],
"inks2d/effects/tweens": ["effects/tweens/", "effects/tweens/*"],
"inks2d/effects/utils": ["effects/utils/", "effects/utils/*"],
"inks2d/extras": ["extras/", "extras/*"],
"inks2d/geom": ["geom/", "geom/*"],
"inks2d/graphics": ["graphics/", "graphics/*"],
"inks2d/group": ["group/", "group/*"],
"inks2d/inputs": ["inputs/", "inputs/*"],
"inks2d/math": ["math/", "math/*"],
"inks2d/misc": ["misc/", "misc/*"],
"inks2d/misc/effects": ["misc/effects", "misc/effects/*"],
"inks2d/misc/general": ["misc/general", "misc/general/*"],
"inks2d/misc/math": ["misc/math", "misc/math/*"],
"inks2d/misc/tiles": ["misc/tiles", "misc/tiles/*"],
"inks2d/text": ["text/", "text/*"],
"inks2d/tiles": ["tiles/", "tiles/*"],
"inks2d/utils": ["utils/", "utils/*"],
"inks2d": ["src/", "src/*"]
}
},
"include": ["src"]
}