1
0
mirror of https://github.com/one-among-us/data.git synced 2024-11-10 13:24:50 +08:00
one-among-us-data/tsconfig.json
2022-03-21 00:55:53 +08:00

27 lines
503 B
JSON

{
"compilerOptions": {
"target": "ES2021",
"lib": [
"ES2021"
],
"skipLibCheck": true,
"allowSyntheticDefaultImports": true,
"forceConsistentCasingInFileNames": true,
"moduleResolution": "Node",
"resolveJsonModule": true,
"isolatedModules": true,
"strict": false,
"module": "ES2020",
"strictBindCallApply": true,
"baseUrl": "./",
"outDir": "./dist"
},
"include": [
"scripts"
],
"exclude": [
"node_modules",
"dist"
]
}