BJ_Casino_Bot/tsconfig.json

31 lines
817 B
JSON
Raw Permalink Normal View History

2022-05-28 13:52:14 +08:00
{
"compilerOptions": {
"target": "esnext",
"useDefineForClassFields": true,
"module": "esnext",
"moduleResolution": "node",
2022-05-29 14:59:37 +08:00
"strict": false,
2022-05-28 13:52:14 +08:00
"jsx": "preserve",
"sourceMap": true,
"resolveJsonModule": true,
"isolatedModules": false,
"esModuleInterop": true,
2022-05-29 14:59:37 +08:00
// "strictNullChecks": false, // 不允許把null、undefined指派給其他類型的變量
// "strictPropertyInitialization": false, // 類的執行個體屬性必須初始化
2022-05-28 13:52:14 +08:00
"lib": [
"esnext",
"dom"
]
},
"include": [
"src/**/*.ts",
"src/**/*.d.ts",
"src/**/*.tsx",
"src/**/*.vue"
],
"references": [
{
"path": "./tsconfig.node.json"
}
]
}