mirror of
https://github.com/openfrontio/OpenFrontIO.git
synced 2026-06-21 11:40:42 +00:00
22 lines
445 B
JSON
22 lines
445 B
JSON
{
|
|
"compilerOptions": {
|
|
"target": "ES2020",
|
|
"module": "ESNext",
|
|
"rootDir": ".",
|
|
"moduleResolution": "node",
|
|
"sourceMap": true,
|
|
"allowSyntheticDefaultImports": true,
|
|
"esModuleInterop": true,
|
|
"experimentalDecorators": true,
|
|
"useDefineForClassFields": false
|
|
},
|
|
"include": [
|
|
"src/**/*",
|
|
"resources/**/*",
|
|
"generated/**/*",
|
|
"tests/**/*",
|
|
"src/scripts"
|
|
],
|
|
"exclude": ["node_modules"]
|
|
}
|