24 lines
421 B
JSON
24 lines
421 B
JSON
|
{
|
||
|
"include": [
|
||
|
"NetscriptDefinitions.d.ts",
|
||
|
"src/**/*",
|
||
|
],
|
||
|
|
||
|
"compilerOptions": {
|
||
|
"module": "esnext",
|
||
|
"target": "esnext",
|
||
|
"moduleResolution": "node",
|
||
|
"noImplicitReturns": true,
|
||
|
"noImplicitThis": true,
|
||
|
"esModuleInterop": true,
|
||
|
"sourceMap": false,
|
||
|
"strict": true,
|
||
|
|
||
|
"rootDir": "src/",
|
||
|
"outDir": "dist/",
|
||
|
"baseUrl": "src/",
|
||
|
"paths": {
|
||
|
"/*.js": [ "*" ]
|
||
|
}
|
||
|
}
|
||
|
}
|