1
0
mirror of synced 2024-09-23 18:58:22 +02:00
This commit is contained in:
Rin 2022-07-11 13:54:43 +01:00
parent 5f27717b0e
commit d4ddbc291e
2 changed files with 7 additions and 5 deletions

View File

@ -4,8 +4,9 @@
"outDir": "dist",
"strict": true,
"lib": ["esnext"],
"esModuleInterop": true
"esModuleInterop": true,
"allowJs": true
},
"include": ["src/**/*"],
"exclude": ["src/proto/**/*"]
"exclude": ["src/wmmt/**/*"]
}

View File

@ -1,10 +1,11 @@
{
"compilerOptions": {
"sourceMap": true,
"outDir": "dist/proto",
"outDir": "dist/wmmt",
"strict": true,
"lib": ["esnext"],
"esModuleInterop": true
"esModuleInterop": true,
"allowJs": true
},
"include": ["src/proto/**/*"]
"include": ["src/wmmt/**/*"]
}