2021-12-24 03:21:18 +09:00
|
|
|
{
|
|
|
|
"include": [
|
|
|
|
"NetscriptDefinitions.d.ts",
|
2022-01-10 10:43:51 +09:00
|
|
|
"src/**/*",
|
2021-12-24 03:21:18 +09:00
|
|
|
],
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
|
|
|
"moduleResolution": "node",
|
|
|
|
"noImplicitReturns": true,
|
|
|
|
"noImplicitThis": true,
|
|
|
|
"esModuleInterop": true,
|
2022-01-10 10:43:51 +09:00
|
|
|
"inlineSourceMap": true,
|
|
|
|
"sourceRoot": "http://localhost:8000/sources/",
|
2021-12-24 03:21:18 +09:00
|
|
|
"strict": true,
|
|
|
|
"rootDir": "src/",
|
|
|
|
"outDir": "dist/",
|
|
|
|
"baseUrl": "src/",
|
|
|
|
"paths": {
|
2022-01-10 10:43:51 +09:00
|
|
|
"/*.js": [
|
|
|
|
"*"
|
|
|
|
],
|
|
|
|
"*.js": [
|
|
|
|
"*"
|
|
|
|
],
|
|
|
|
"@ns": [
|
|
|
|
"../NetscriptDefinitions.d.ts"
|
|
|
|
]
|
2021-12-30 03:27:12 +09:00
|
|
|
}
|
2021-12-24 03:21:18 +09:00
|
|
|
}
|
|
|
|
}
|