2018-06-13 23:38:35 -04:00
|
|
|
{
|
2021-09-10 00:13:03 -04:00
|
|
|
"compilerOptions": {
|
|
|
|
"baseUrl": ".",
|
2022-10-09 18:42:14 -04:00
|
|
|
"paths": {
|
2022-12-29 20:28:53 -05:00
|
|
|
"@player": ["src/Player"],
|
|
|
|
"@nsdefs": ["src/ScriptEditor/NetscriptDefinitions"]
|
2022-10-09 18:42:14 -04:00
|
|
|
},
|
2021-09-10 00:13:03 -04:00
|
|
|
"esModuleInterop": true,
|
|
|
|
"isolatedModules": true,
|
|
|
|
"jsx": "react",
|
|
|
|
"module": "commonjs",
|
2022-05-10 20:04:19 -07:00
|
|
|
"noEmit": true,
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
2021-09-10 00:13:03 -04:00
|
|
|
"sourceMap": true,
|
|
|
|
"strict": true,
|
2022-05-10 20:04:19 -07:00
|
|
|
"target": "es2019"
|
2021-09-10 00:13:03 -04:00
|
|
|
},
|
2023-01-07 23:36:55 -08:00
|
|
|
"include": ["src/**/*", "electron/**/*", ".eslintrc.js"]
|
2018-06-13 23:38:35 -04:00
|
|
|
}
|