mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-21 22:35:43 +01:00
29 lines
617 B
JSON
29 lines
617 B
JSON
{
|
|
"extends": "@tsconfig/node20/tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "node16",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"resolveJsonModule": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"sourceMap": true,
|
|
"esModuleInterop": true,
|
|
"lib": [
|
|
"es2018",
|
|
"dom"
|
|
],
|
|
"typeRoots": [
|
|
"./typings",
|
|
"./node_modules/@types/"
|
|
]
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|