forked from TurboWarp/extensions
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
25 lines (25 loc) · 981 Bytes
/
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
{
"compilerOptions": {
"target": "ES2020",
"noEmit": true,
"allowJs": true,
"checkJs": true,
"paths": {
// See https://github.com/turboWarp/types#using-from-npm
"scratch-vm": ["./node_modules/@turbowarp/types/index.d.ts"],
"scratch-render": ["./node_modules/@turbowarp/types/index.d.ts"],
"scratch-svg-renderer": ["./node_modules/@turbowarp/types/index.d.ts"],
"scratch-render-fonts": ["./node_modules/@turbowarp/types/index.d.ts"],
"scratch-storage": ["./node_modules/@turbowarp/types/index.d.ts"],
"scratch-audio": ["./node_modules/@turbowarp/types/index.d.ts"],
"scratch-parser": ["./node_modules/@turbowarp/types/index.d.ts"],
"scratch-blocks": ["./node_modules/@turbowarp/types/index.d.ts"]
}
},
"include": [
"node_modules/@turbowarp/types/types/scratch-vm-extension.d.ts",
"node_modules/@turbowarp/types/types/scratchx-extension.d.ts",
"extensions/**/*",
"website/**/*"
]
}