mirror of
https://github.com/yuzu-emu/Command-fix.git
synced 2024-11-22 13:15:40 +01:00
20 lines
415 B
JSON
20 lines
415 B
JSON
{
|
|
"extends": "@tsconfig/node14/tsconfig.json",
|
|
"compilerOptions": {
|
|
"module": "CommonJS",
|
|
"noImplicitAny": true,
|
|
"strictNullChecks": true,
|
|
"removeComments": true,
|
|
"preserveConstEnums": true,
|
|
"outDir": "dist/",
|
|
"sourceMap": true,
|
|
},
|
|
"include": [
|
|
"src/**/*"
|
|
],
|
|
"exclude": [
|
|
"node_modules",
|
|
"**/*.spec.ts"
|
|
]
|
|
}
|