2022-10-22 19:32:17 +00:00
|
|
|
{
|
|
|
|
"compilerOptions": {
|
|
|
|
"module": "esnext",
|
|
|
|
"target": "esnext",
|
|
|
|
"lib": ["esnext", "dom"],
|
2022-11-03 16:55:21 +00:00
|
|
|
"types": ["vite/client"],
|
2022-10-22 19:32:17 +00:00
|
|
|
"strict": true,
|
|
|
|
"allowJs": true,
|
2023-03-14 07:13:51 +00:00
|
|
|
"noEmit": true,
|
2022-10-22 19:32:17 +00:00
|
|
|
"isolatedModules": true,
|
|
|
|
"esModuleInterop": true,
|
|
|
|
"baseUrl": ".",
|
|
|
|
"inlineSourceMap": true,
|
|
|
|
"moduleResolution": "Node",
|
|
|
|
"resolveJsonModule": true,
|
|
|
|
"skipLibCheck": true,
|
|
|
|
"paths": {
|
|
|
|
"@/*": ["./src/*"],
|
2022-10-27 01:56:35 +00:00
|
|
|
"/src/*": ["./src/*"],
|
2022-10-22 19:32:17 +00:00
|
|
|
"@ns": ["./NetscriptDefinitions.d.ts"]
|
|
|
|
}
|
|
|
|
},
|
2023-03-14 07:13:51 +00:00
|
|
|
"include": ["src/**/*.ts", "src/**/*.js", "NetscriptDefinitions.d.ts", "vite.config.ts", "vite.config.js"]
|
2022-10-22 19:32:17 +00:00
|
|
|
}
|