forked from LF112/FUTI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
tsconfig.json
40 lines (40 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
30
31
32
33
34
35
36
37
38
39
40
/*
* @Author: LF112 (futiwolf) <[email protected]>
* @License: GNU Affero General Public License v3.0
*
* Copyright (c) 2022 LF112 (futiwolf), All Rights Reserved.
* 请注意,本项目使用 AGPL v3 开源协议开源,请严格依照开源协议进行不限于编辑、分发等操作。详见 https://www.chinasona.org/gnu/agpl-3.0-cn.html
*/
{
"compilerOptions": {
"target": "esnext",
"lib": ["DOM", "DOM.Iterable", "ESNext"],
"allowJs": false,
"skipLibCheck": true,
"esModuleInterop": false,
"allowSyntheticDefaultImports": true,
"strict": false,
"forceConsistentCasingInFileNames": true,
"noFallthroughCasesInSwitch": true,
"module": "esnext",
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"noEmit": true,
"jsx": "react",
"plugins": [
{
"name": "typescript-styled-plugin"
}
],
"typeRoots": ["./node_modules/@types"],
"baseUrl": "src"
},
"include": [
"./src/**/*.ts",
"./src/**/*.tsx",
"src/lib/live2dcubismcore.min.js"
],
"exclude": ["node_modules"],
"files": ["custom.d.ts"]
}